$(document).ready(function(){
$("#menu").fadeTo("slow", 0.5);
$("#menu").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.5);
});
}); 

$(document).ready(function(){
$("#logo").fadeTo("slow", 0.5);
$("#logo").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.5);
});
}); 