// JavaScript Document
init = function() {
	// alert("init loaded");
	// Activate drop downs in IE
	if (document.all&&document.getElementById) {
		cssdropdownRoot = document.getElementById("main-navigation");
		for (x=0; x<cssdropdownRoot.childNodes.length; x++) {
			node = cssdropdownRoot.childNodes[x];
			if (node.nodeName == "LI") {
				node.onmouseover = function() { this.className+=" over"; }
				node.onmouseout = function() { this.className = this.className.replace(" over", ""); }
			}
		}
	}	
}
