// 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", "");
					}
				}
			}
		}
		if(document.getElementById("serviceshops")) {
			navRoot2 = document.getElementById("serviceshops");
			for (i=0; i<navRoot2.childNodes.length; i++) {
				node = navRoot2.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" over";
					}
					node.onmouseout=function() {
						this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	}
}

// 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() {
	externalLinks();
	internetExplorerSucksBigtime();
}

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