// JavaScript Document
var hideTimerId = 0;

function hideTimeout(id)
{
	$(id).hide();hideTimerId = 0;
}

function hideMenuItem(id)
{
	hideTimerId=setTimeout("hideTimeout('"+id+"')", 500);
}

function showMenuItem(id)
{
	if(hideTimerId!=0)
	{
		clearTimeout(hideTimerId);
	}
	else
	{
		$(id).show();
	}
}


