// JavaScript Document

IEMenu = function() {
	if (document.all&&document.getElementById&&IE6){
		navRoot = document.getElementById("nav");
		lis = navRoot.getElementsByTagName('li');
		lisc = lis.length;
		for(i=0; i<lisc; i++) {
			lis[i].onmouseover=function(){ this.className+=" over"; }
			lis[i].onmouseout=function() { this.className=this.className.replace(" over", ""); }
		}
	}
}

/** onloadStack, allows for multiple events to happen onload **/
var __onloadStack = new Array();

window.onload = function() {
	for (i in __onloadStack) {
		__onloadStack[i]();
	}
}
