(function($) { // OPACITY OF BUTTON SET TO 0% $(".box").css("opacity","0"); // ON MOUSE OVER $(".box").hover(function () { $(this).stop().animate({ opacity: .5 }, 600); }, function () { $(this).stop().animate({ opacity: 0 }, 600); }); })(jQuery);