// Drop downs for IE6
ie6Hover = function() {
	var hovers = document.getElementById("header").getElementsByTagName("LI");
	for (var i=0; i<hovers.length; i++) {
		hovers[i].onmouseover=function() {
			this.className+=" hover";
		}
		hovers[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" hover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", ie6Hover);

