// JavaScript Document
// original navbar code backup
var navStuff = function() {

	// suckerfish method for adding hover capability to non link elements for Internet Exploder
	var navMenu = document.getElementById("nav").getElementsByTagName("li");
	for (var i=0; i<navMenu.length; i++) {
		navMenu[i].onmouseover=function() {
			this.className+=" iehover";
		}
		navMenu[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
	
};

window.onload=navStuff;

