// Make Internet Explorer work with li:hover
internetExplorerSucksBigtime = function() {
	if (document.all&&document.getElementById) {
		if(document.getElementById("subnav")) {
			navRoot = document.getElementById("subnav");
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" over";
					}
					node.onmouseout=function() {
						this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	}
}

// Input field hints
inputFields = function() {
	if(document.getElementById("passwordfield")) {
		document.getElementById("passwordfield").className="";
		blurPassword();
	}
	if(document.getElementById("emailfield")) {
		document.getElementById("emailfield").className="";
		blurEmail();
	}
	if(document.getElementById("searchfield")) {
		document.getElementById("searchfield").className="";
	}
}

// Open a new blank window without breaking XHTML Strict validation
externalLinks = function() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external")
		anchor.target = "_blank";
    }
}

// Fix the fecking M$IE bug
function loadEverything() {
	inputFields();
	internetExplorerSucksBigtime();
	externalLinks();
}

// Do this when loading the page
window.onload=loadEverything;

// Change text to password field
function focusPassword() {
	document.getElementById("passwordbox").innerHTML='<input type="password" id="passwordfield" class="default" name="passwordfield" onblur="if (this.value == \'\' || this.value == defaultValue) { blurPassword(); } else { this.className = \'default\'; }" value="" />';
	setTimeout('document.getElementById("passwordfield").focus()',10);
}

// Change text to password field
function focusEmail() {
	document.getElementById("emailbox").innerHTML='<input type="text" id="emailfield" class="default" name="emailfield" onblur="if (this.value == \'\' || this.value == defaultValue) { blurEmail(); } else { this.className = \'default\'; }" value="" />';
	setTimeout('document.getElementById("emailfield").focus()',10);
}

