

	function anim(){

		$(".home").mouseover(function(){
		$(".home").animate({opacity: "1", top: "-=5"}, 300)
		})
		$(".home").mouseout(function(){
		$(".home").animate({opacity: "1", top: "+=5"}, 300)
		})
		$(".homeselected").mouseover(function(){
		$(".homeselected").animate({opacity: "1", top: "-=5"}, 300)
		})
		$(".homeselected").mouseout(function(){
		$(".homeselected").animate({opacity: "1", top: "+=5"}, 300)
		})
		
		$(".testimonials").mouseover(function(){
		$(".testimonials").animate({opacity: "1", top: "-=5"}, 300)
		})
		$(".testimonials").mouseout(function(){
		$(".testimonials").animate({opacity: "1", top: "+=5"}, 300)
		})
		$(".testimonialsselected").mouseover(function(){
		$(".testimonialsselected").animate({opacity: "1", top: "-=5"}, 300)
		})
		$(".testimonialsselected").mouseout(function(){
		$(".testimonialsselected").animate({opacity: "1", top: "+=5"}, 300)
		})
		
		$(".about").mouseover(function(){
		$(".about").animate({opacity: "1", top: "-=5"}, 300)
		})
		$(".about").mouseout(function(){
		$(".about").animate({opacity: "1", top: "+=5"}, 300)
		})
		$(".aboutselected").mouseover(function(){
		$(".aboutselected").animate({opacity: "1", top: "-=5"}, 300)
		})
		$(".aboutselected").mouseout(function(){
		$(".aboutselected").animate({opacity: "1", top: "+=5"}, 300)
		})
		
		$(".contact").mouseover(function(){
		$(".contact").animate({opacity: "1", top: "-=5"}, 300)
		})
		$(".contact").mouseout(function(){
		$(".contact").animate({opacity: "1", top: "+=5"}, 300)
		})
		$(".contactselected").mouseover(function(){
		$(".contactselected").animate({opacity: "1", top: "-=5"}, 300)
		})
		$(".contactselected").mouseout(function(){
		$(".contactselected").animate({opacity: "1", top: "+=5"}, 300)
		})
		
		return false;
	
	};

