/*

This file was emptied on 3.8.2010 by mjvysock as we rolled out the new CSS-only navigation.
By emptying this file, we now ensure that any page that still loads it, will not be burdened by a large HTTP request

*/

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