var arrtable = new Array();
this.onLoad = InitializeMenu();

function InitializeMenu()
{
	cookieValue = getMenuCookieValue()
	if (belongsToTable(cookieValue))
		ShowHideTable(cookieValue);
	
	
}
///////////////////////////////////////////////////////////////////
function belongsToTable(tableName){
	for (i=0;i<arrtable.length;i++)
		if(arrtable[i]==tableName)
			return true;
	return false;
}
///////////////////////////////////////////////////////////////////
function ShowHideTable(TableName)
	{
		var table = document.all[TableName];
		if(table.style.display=='none'){
				HideAllTables();
				table.style.display='';
			}
		else{
				table.style.display='none';
			}
	}
///////////////////////////////////////////////////////////////////
function HideAllTables()
{
	//left menu table names
	//var arrtable = new Array("domains","hosting","myexa")
	for (i=0 ; i<arrtable.length ; i++)
		eval(arrtable[i]+".style.display='none'");
}
///////////////////////////////////////////////////////////////////
function getMenuCookieValue()
{
	var menuCookie, end;
	menuCookie = document.cookie;
	pos = menuCookie.indexOf("menuTable=",0);
	end = menuCookie.indexOf(";",pos);
	return menuCookie.substring(pos+10,end);
}
