$(function(){
		   
		   
$(".button").mouseover(function() { $("img", this).animate({left:"-10px"},200); });
$(".button").mouseout(function() { $("img", this).animate({ left:"-1px" },200); }); 

});
