$(document).ready(function () {	  $(".fade").css({background:'none'});

    $(".fade").hover(function() {
      $(this).stop().animate({opacity: "0.6"}, 'slow');
    },
    function() {
      $(this).stop().animate({opacity: "1"}, 'slow');
    });

    $(".fademenu").hover(function() {
      $(this).stop().animate({opacity: "1"}, 'slow');
    },
    function() {
      $(this).stop().animate({opacity: "0"}, 'slow');
    });


    $(".fadefooter").hover(function() {
      $(this).stop().animate({opacity: "0.6"}, 'slow');
    },
    function() {
      $(this).stop().animate({opacity: "1"}, 'slow');
    });


});

