	$(document).ready(function(){
		$('#smoothmenu1 table td').hover(
			function() { $('ul', this).css('display', 'block');  },
			function() { $('ul', this).css('display', 'none'); });
	});

