
function showNav(idname)

{
	document.getElementById(idname).style.backgroundPosition  =  "-164px 0px";
	document.getElementById(idname).style.display  =  "block";
}

function hideNav(idname)

{
	document.getElementById(idname).style.backgroundPosition  =  "0px 0px";
}