$(document).ready(function(){
	$(".nav td").mouseenter(function(event){
		$(this).fadeTo("fast",0.5);
	});
	$(".nav td").mouseleave(function(event){
		$(this).fadeTo("fast",1);
	});
	$(".nav td").click(function(event){
		window.location = $('a',this).attr('href');
	});
});