var animspeed=400;
$(document).ready(function(){
	$("#tab1").hover( 
		function(){	$("#tab1").animate( {top:"-35px"}, 0 );	$("#tab1").stop();}
		, 
		function(){	$("#tab1").animate({ top: "0px"}, animspeed );}
		);

	$("#tab2").hover( 
		function(){	$("#tab2").animate( {top:"-35px"}, 0 );	$("#tab2").stop();}
		, 
		function(){	$("#tab2").animate({ top: "0px"}, animspeed );}
		);

	$("#tab3").hover( 
		function(){	$("#tab3").animate( {top:"-35px"}, 0 );	$("#tab3").stop();}
		, 
		function(){ $("#tab3").animate({ top: "0px"}, animspeed );}
		);

	$("#tab4").hover( 
		function(){	$("#tab4").animate( {top:"-35px"}, 0 );	$("#tab4").stop();}
		, 
		function(){	$("#tab4").animate({ top: "0px"}, animspeed );}
		);

	$("#tab5").hover( 
		function(){	$("#tab5").animate( {top:"-35px"}, 0 );	$("#tab5").stop();}
		, 
		function(){ $("#tab5").animate({ top: "0px"}, animspeed );}
		);

});

