/* ================================================================ this copyright notice must be untouched at all times. copyright (c) 2009 stu nicholls - stunicholls.com - all rights reserved. =================================================================== */ $(document).ready(function(){ $(".wrap div").hover(function() { $(this).animate({"top": "-170px"}, 400, "swing"); },function() { $(this).stop(true,false).animate({"top": "0px"}, 400, "swing"); }); });