<!--//--><![CDATA[//><!--
// dropdown navigation for IE
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("mainnav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
					var off = $(this).positionedOffset();
					var drop = $(this).descendants();
					//alert(drop[1].identify());
					
					//alert (off.left);
					if (drop[1]){
					drop[1].setStyle({'left': off.left});
					}
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;
//--><!]]>