function onReady()
{
	$('#main_menu td').hover(
		function() {
			$('ul:first', this).show();
		},
		function() {
			$('ul:first', this).hide();
		});

/*	$('#main_menu li li').hover(
		function() {

				$('ul:first', this).each(function()
				{
					$(this).css( { top : $(this).parent().position().top,
								left : $(this).parent().position().left + $(this).parent().width()
							} )
							.show();
				});
		},
		function() {
			$('ul:first', this).hide();
		});
*/
};
