<!--
/*
Javascript and drop down menus originally designed by Morte @ webdoofus.com. Special
thanks to Morte and Jegran aka Sam for use of this code and the tutelage behind it's
usage. Modified for this application by Arioch
*/

var menuItems = 4
var linkItems = 9
		
// SHOW SELECTED MENU
function showMenuList(thisId){
	thisObj = document.getElementById(thisId);

	if(thisObj.style.visibility = "hidden"){
		thisObj.style.visibility = "visible";
	}

}


// HIDE DISPLAYED MENU
function removeMenuList(){
	for(i=1;i<=menuItems;i++) { 
		thisObj = document.getElementById(i);

		if(thisObj.style.visibility = "visible"){
			thisObj.style.visibility = "hidden";
		}

	}
}

// HIDE DISPLAYED LINK LIST
function removeLinkList(){
	for(i=5;i<=linkItems;i++) { 
		thisObj = document.getElementById(i);

		if(thisObj.style.visibility = "visible"){
			thisObj.style.visibility = "hidden";
		}

	}
}

// TABLE COLORS
function swapColorImg(thisColor,thisId){
	thisTable = document.getElementById(thisId);
	thisTable.style.background = thisColor;
  	return;
}

// CHECK TO ENSURE BROWSER CAN HANDLE NEW DOM ELEMENT,
// REDIRECT IF INCOMPATIBLE
function checkBrowser() {
	if (!document.getElementsByTagName) {
		location = "http://www.dp-guild.org/NCB.html";
	}
	return;
}
//-->
