$('div#menu ul li a').mouseover(function(){
		$(this).animate({ 
				opacity: 0.4
		}, 300 );
		$(this).animate({ 
				opacity: 1.0
		}, 100 );
});
