$(document).ready(function(){ 
	$('.detailup.slideup').hover(function(){
		$(".detail", this).stop().animate({top:'160px'},{queue:false,duration:500});
	}, function() {
		$(".detail", this).stop().animate({top:'250px'},{queue:false,duration:500});
	});
});
