/* Here is the function that makes IE work.  This menu system, by the way
 *  was developed by Craig Erskine who gives credit to the Suckerfish CSS
 *  menus.  I've changed the CSS (found at 
 *  http://www.chshonor.org/includes/cssmenu.css) to suit my own needs
 *  but for the most part, its the same.
 *
 *  Visit Graig's website at http://solardreamstudios.com/ for more great
 *  examples and tutorials.
 ****************************************************************************/

navHover = function() {
	var lis = document.getElementById("navmenu").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);
