$(document).ready(function() {
	$("#LikeBox").hover(function(){
		$("#slider").stop(true, false).animate({left:"0"},"slow");
	},function(){
		$("#slider").stop(true, false).animate({left:"-292"},"slow");
	});
  return false; 
});

/*
$(document).ready(function() {
	$("#LikeBox").hover(function(){
		$("#slider").animate({ 
				left: "0px"
				}, 1000, "easeInBack" );
	},function(){
		$("#slider").animate({ 
				left: "-292px"
				}, 1000, "easeOutBack" );
	});*/
