/* ================================================================ 
This copyright notice must be untouched at all times.
Copyright (c) 2009 Stu Nicholls - stunicholls.com - all rights reserved.
=================================================================== */
$(document).ready(function(){





//$(".wrap div.info").hover(function() {
$(".wrap div").hover(function() {
//$("a#ra").hover(function() {
	$(this).animate({"top": "-250px"}, 400, "swing");
},function() {
	$(this).stop(true,false).animate({"top": "0px"}, 400, "swing");
});


$(".wrap1 div").hover(function() {
//$("a#ra").hover(function() {
	$(this).animate({"top": "-150px"}, 400, "swing");
},function() {
	$(this).stop(true,false).animate({"top": "0px"}, 400, "swing");
});




});

