myNav ={
				dec:0,
				con:0,
				c:[
					{
							n:"Admin",
							f:"index.php",
							uc:0,
							c:0
					}
				  ]
}


myNav_dec = {
	parentCon:[
		{
			start:'<TABLE cellpadding=0 cellspacing=0 onmouseout="hideAll(500, \'myNav_Child\')"><TR>',
			end:"</TR></TABLE>"
		},
		{
			start:'<TABLE class="dropdown" cellpadding=0 cellspacing=0 onmouseout="hideAll(200, \'myNav_Child\')">',
			end:"</TABLE>"
		}
	],
	child:[
		{
			start:'<TD id=navID ary=navID class=nav_a_0 sid=navID onmouseover="overOut(this, 1,event)" onmouseout="overOut(this, 0,event)" onclick="goHere(this,event)"><SPAN id=navID_text>&nbsp;&nbsp;',
			end:"&nbsp;&nbsp;</SPAN></TD>"
		},
		{
			start:'<TR><TD id=navID ary=navID class=nav_ac_0 sid=navID onmouseover="overOut(this, 1,event)" onmouseout="overOut(this, 0,event)" onclick="goHere(this,event)"><SPAN id=navID_text>&nbsp;',
			end:'&nbsp;&nbsp;</SPAN></td></TR>'
		}
	],
	dir:[0,4,3]
}

// child contains the HTML containers for the dropdowns
// dir is the navigation style for each level

myNav_Child = {divs:[],curOb:0}

function inish(){

	oNav = document.getElementById("myNav")
	oNav.innerHTML = ""
	rv = buildNav(oNav, "myNav.c", 0, myNav_dec, 0, myNav.c)

}

