
;(function($){
		   
$(function(){
	
	$('.form-search button.button').addClass('button1');
	$(".form-search button.button").hover(function(){
		$(this).find("span").stop().animate({marginLeft: "6px"}, "fast")
	}, function(){
	$(this).find("span").stop().animate({marginLeft: "0px"}, "fast")
	});
	
	$(".btn-cart").hover(function(){
		$(this).find("span").stop().animate({marginLeft:"35px"}, "fast")
	}, function(){
		$(this).find("span").stop().animate({marginLeft:"0px"}, "fast")
	});
	
	
});

})(jQuery);


/***********************************************************************/


  
