$(document).ready(function(){  

$(".latest_img").fadeTo("slow", 0.6);  

$(".latest_img").hover(function(){  

$(this).fadeTo("slow", 1.0);  

},function(){  

$(this).fadeTo("slow", 0.6);  

});  

$(".menu_item").fadeTo("slow", 1.0);  

$(".menu_item").hover(function(){  

$(this).fadeTo("fast", 0.7);  

},function(){  

$(this).fadeTo("slow", 1.0);  

});  

}); 