// JavaScript Document
$(function()
	{
		$('.menutable td').hover(function()
			{
				$(this).find('.menubuttonup').stop(true,true).fadeIn();
			},function()
			{
				$(this).find('.menubuttonup').stop(true,true).fadeOut();
			});
		$('.menubuttonup').hover(function()
			{
				$(this).find('.menudrop').stop(true,true).slideDown();
			},function()
			{
				$(this).find('.menudrop').stop(true,true).slideUp();
			});
	});
