jQuery(function() {
// OPACITY OF BUTTON SET TO 50%
jQuery(".fade").css("opacity","1.0");
jQuery(".page_item").css("opacity","1.0");

jQuery(".fade").hover(function () {
    jQuery(this).stop().animate({opacity: 0.3}, "fast");},
    function () { jQuery(this).stop().animate({opacity: 1.0}, "slow");});

jQuery(".page_item").hover(function () {
    jQuery(this).stop().animate({opacity: 0.3}, "fast");},
    function () { jQuery(this).stop().animate({opacity: 1.0}, "fast");});


});
