$(function() {

$('footer').mouseenter(function(){ $(this).fadeTo(200, 1); })
           .mouseleave(function() { $(this).fadeTo(200, 0.4); });

});