////////////////////////////////////////////////////////
// SKG Web
////////////////////////////////////////////////////////
// Version: @project-version@
// Release Date: @project-date-iso@
// Author: Jabouty of The Astral Order, Eldre'Thalas
// Email: bubbabriggs@gmail.com
////////////////////////////////////////////////////////
// You are free to modify these files for your own
// personal use as long as this header and all copyright
// information remains intact. However, these files
// cannot be redistributed after modification without
// explicit written permission from the author.
////////////////////////////////////////////////////////

<!--//--><![CDATA[//><!--
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);
//--><!]]>

////////////////////////////////////////////////////////
// scripts/iehover.js
////////////////////////////////////////////////////////
// Version: @file-revision@
// Release Date: @file-date-iso@
////////////////////////////////////////////////////////