﻿var menuList;

function show(curPage){
	if (document.getElementById("p" + curPage)){
		theMenu = document.getElementById("p" + curPage);
		theMenu.style.visibility = "visible";
	}
	if (document.getElementById("c" + curPage)){
		var theCell = document.getElementById("c" + curPage);
		theCell.style.backgroundColor='';
		theCell.onclick=menuOnClick;
	}
}
function hide(curPage){
	if (document.getElementById("p" + curPage)){
		theMenu = document.getElementById("p" + curPage)
		theMenu.style.visibility = "hidden";	
	}
	if (document.getElementById("c" + curPage)){
		var theCell = document.getElementById("c" + curPage);
		theCell.style.backgroundColor='';
	}
}

function mov(theItem){
    theItem.className='menuMouseOver';
}

function mou(theItem){
    theItem.className='menuMouseOut';
}

function menuOnClick(evnt){
	var s='', e = evnt || window.event;
	
	if (e) {

		e.cancelBubble = true;
		if (e.stopPropagation) e.stopPropagation();

		if (e.target) {
			var pageID = e.target.id;
		}
		else{
			pageID = e.srcElement.id;
		}
		pageID = pageID.replace('c', '');
		
		document.location.href='default.aspx?PAGE_ID=' + pageID
	}
}

function doLink(curPage){
	document.location.href="default.aspx?PAGE_ID=" + curPage
}
