
$(document).ready(function(){

$(".specials_wrap div").hover(function() {
	$(this).animate({"top": "-230px"}, 400, "swing");
},function() {
	$(this).stop(true,false).animate({"top": "0px"}, 1100, "swing");
});

});
