$(document).ready(function(){
	$('#nav li a').hover(function(){
	    $(this).fadeTo(200, 0);
	},
	function(){
	    $(this).fadeTo(200, 1);
	});
});
