/* Mouseover Function */
function startList() {
	navRoot = document.getElementById("nav");
	for (i=0; i<navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if (node.nodeName=="LI") {
		 node.onmouseover=function() {
			this.className+="over";
		 }
		 node.onmouseout=function() {
			this.className=this.className.replace("over", "");
		 }
/*
		 node.onclick=function() {
			val = this.id+".php";
			window.location="http://www.virtualgreats.com/"+val;
		 }
*/
 		} // end if
  	} // end for
  	if (navRoot = document.getElementById("subnav")) {
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
			 node.onmouseover=function() {
				this.className+="over";
			 }
			 node.onmouseout=function() {
				this.className=this.className.replace("over", "");
			 }
/*
			 node.onclick=function() {
				val = this.id+".php";
				window.location="http://www.virtualgreats.com/"+val;
			 }
*/
			} // end if
		} // end for
  	} // end check for existance of dom item

} // end func

/* Onload Functions */
window.onload=function() {
	startList();
	if ($(thisuri)) { 
		$(thisuri).className+="active";
	}
} // end onload func