function MSIECSSHack() {
	if (navigator.appName!="Microsoft Internet Explorer") {
		return;
	}
	var ListElements=document.getElementById("main-menu").getElementsByTagName("li");
	for (var i=0; i<ListElements.length; i++) {
		ListElements[i].onmouseover=function() {
			this.className+=" over";
		}
		ListElements[i].onmouseout=function() {
			this.className=this.className.replace(" over", "");
		}
	}
}

function setFocus() {
	document.forms[0].elements[0].focus();
}

function setSecondFocus() {
	document.forms[1].elements[0].focus();
}