$(document).ready(function(){
				$("a.site_desc").hover(
				function(){
      				$(".cover", this).animate( { top: "108px" }, { queue:false, duration:250 } );
    			},
				function(){
      				$(".cover", this).animate( { top: "135px" }, { queue:false, duration:250 } );
    			});
});
