/* #############################################################################

NS: TESCODIRECT.lib.topNav
	static: yes

dependancies:
	TESCODIRECT.lib.event
	
############################################################################# */

TESCODIRECT.lib.topNav = new function() {
	this.VERSION = "1.0.0";
	this.NAME = "TESCODIRECT.lib.topNav";

	this.init = function() {
		if(window.attachEvent) {
			var o = document.getElementById("nav");
			if(o) {
				var oLi = o.getElementsByTagName("li");
				for (var i = 0; i < oLi.length; i++) {
					oLi[i].onmouseover = function() {
						this.className += " sfhover";
					}
					oLi[i].onmouseout = function() {
						this.className = this.className.replace(new RegExp(" sfhover\\b"), "");
					}
				}
			}
		}
	}
}