$(document).ready(function(){
$("#footer").fadeTo("slow", 0.0);
$("#footer").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.0);
});
});
