/* menu.js */
var Menu = {

	run: function()
	{
		$('#menu th').bind('mouseenter', function(e) {
			//$(this).find('ul').slideDown(); 
			$(this).find('ul').show();
		});
		$('#menu th').bind('mouseleave', function(e) {
			//$(this).find('ul').slideUp(); 
			$(this).find('ul').hide();
		});		
	}

}

$(Menu.run);