var IS_DOM = (document.getElementById) ? true : false;
var IS_IE = (document.all) ? true : false;
var IS_IE50 = (navigator.userAgent.indexOf("IE 5.0") != -1);
var IS_Mac = (navigator.appVersion.indexOf("Mac") != -1);


startList = function()
{
	navRoot = document.getElementById("projContent");
	for (i=0; i<navRoot.childNodes.length; i++)
	{
		node = navRoot.childNodes[i];
		if (node.nodeName=="DIV") {
			node.onmouseover=function() {
				if (IS_IE) this.className += " over";
			}
			node.onmouseout=function() {
				if (IS_IE) this.className = this.className.replace(" over", "");
			}
			node.onclick=function() {
				linkDiv(this);
			}
		}
	}
}

// links the entire DIV to the HREF of the first link inside of it
function linkDiv(theDiv)
{
	var theLink = theDiv.getElementsByTagName("a")[0];
	window.location = theLink.href;
}

window.onload = startList;
