function ShowLayer(SubMenu)
{
	document.getElementById(SubMenu).style.visibility = 'visible';
}

function doit(MainMenu, SubMenu, xPosMove)
{
	var xPosSM = document.getElementById('SiteTable').offsetLeft
	var yPosSM = document.getElementById('SiteTable').offsetTop
	
	document.getElementById(SubMenu).style.top = yPosSM + 45;
	document.getElementById(SubMenu).style.left = xPosSM + xPosMove;

}


function HideAllLayers()
{
	document.getElementById('SMmale').style.visibility = 'hidden';
	document.getElementById('SMfemale').style.visibility = 'hidden';
}

var intID = 0;

function TimeHideMenus()
{
	intID = setTimeout('HideAllLayers()', 1000);
}

function StopTimeHideMenus()
{
	clearTimeout(intID);
}



