$(document).ready(function(){
	
$("#menu tr td a").hover(function(){
	$(this).children("u").addClass("hover");
	$(this).children("u").children("i").addClass("hover");
		},function(){
	$(this).children("u").removeClass("hover");
	$(this).children("u").children("i").removeClass("hover");
});

});
