var menutimer;
function show_menu(x){
	//alert(x);
	clearTimeout(menutimer);
	for(var i=0;i<8;i++){
		if(i == x){
			document.getElementById('nav_'+i+'_trigger').style.background='#2e3192 url(/nav_images/nav_over_bkg.png) repeat-x';
			if(document.getElementById('menu_'+i)){
				document.getElementById('menu_'+i).style.visibility='visible';
			}
		}else{
			document.getElementById('nav_'+i+'_trigger').style.background='#2e3192 url(/nav_images/nav_bkg.png) repeat-x';
			if(document.getElementById('menu_'+i)){
				document.getElementById('menu_'+i).style.visibility='hidden';
			}
		}
	}
}
function hide_menu(x){
	menutimer=setTimeout("wipe('"+x+"')",400);
}
function wipe(x){
	clearTimeout(menutimer);
	document.getElementById('nav_'+x+'_trigger').style.background='#2e3192 url(/nav_images/nav_bkg.png) repeat-x';
	if(document.getElementById('menu_'+x)){
		document.getElementById('menu_'+x).style.visibility='hidden';
	}
}







function loginlink(){
	document.write("<A HREF=\"/login.html\" CLASS=\"header\">LOG IN</A>");
}

function editlogout(x,y){
	document.write("<A HREF=\"/logout.html\" CLASS=\"header\">LOG OUT</A><BR />");
	if(y==0){
		document.write("<A HREF=\"/admin.html\" CLASS=\"header\">ADMIN</A> | <A HREF=\"/wysiwyg/index.html?url="+x+"\" CLASS=\"header\">EDIT</A>");
	}
}


