$(function()
{
	$(".menu A").live('mouseover', function()
	{
		var mid = $(this).attr('id');
		var pos = $(this).offset();

		var top = pos.top-240;

		$("#sub"+mid).css({ 'top' : top+'px' });
		$("#sub"+mid).show();
	});

	$(".menu A").live('mouseout', function()
	{
		var mid = $(this).attr('id');

		$("#sub"+mid).hide();
	});

	$(".submenu").live('mouseover', function()
	{
		$(this).show();
	});
	$(".submenu").live('mouseout', function()
	{
		$(this).hide();
	});

});
