/* ================================================================ 
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": "-300px","left": "8px"}, 400, "swing");
},function() {
	$(this).stop(true,false).animate({"top": "0px", "left": "8px"}, 400, "swing");
});

});
