$(document).ready(function(){	
				$('.block_index.slidedown').hover(function(){
					$(".cover", this).stop().animate({top:'-80px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({top:'325px'},{queue:false,duration:300});
				});

			});

	

