var menu_table_onload = function()
{	
	var col_tr = window.document.getElementById('menu_table').childNodes[0].childNodes;
	for(var n=0 ; n < col_tr.length ; n++)
	{
		if(n % 2 == 1)
		{col_tr[n].style.display='none';}
		else
		{
			col_tr[n].onclick = function()
			{
				var col_tr = window.document.getElementById('menu_table').childNodes[0].childNodes;
				for(var n=0 ; n < col_tr.length ; n++)
				{
					if(n % 2 == 1 )
					{
						
						if(col_tr[n-1] && col_tr[n-1]==this)
						{
							col_tr[n].style.display=(col_tr[n].style.display=="" ? "none" : "");
						}
						else
						{
							col_tr[n].style.display='none';
						}
					}
				}
			}
		}
	}
}
window.attachEvent?window.attachEvent('onload', menu_table_onload) : window.addEventListener('load', menu_table_onload, false);

