$(document).ready(function() {
	$('#buyNowHome').hover(function(){
		$(this).animate({top:'0px'},{queue:false,duration:500});
	}, function(){
		$(this).animate({top:'-205px'},{queue:false,duration:500});
	});
});
