startList = function() {
	if (document.all&&document.getElementById) {
		qlnavRoot = document.getElementById("qlnav");
		for (i=0; i<qlnavRoot.childNodes.length; i++) {
			node = qlnavRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;

startMessage=function() { 
	setTimeout('document.getElementById("message").style.display="none"',30000); 
	return; 
} 
window.onload=startMessage;
