 function startList() {
	if (document.getElementById){
		var navString = 'archiveMenu';
		var navRoot = document.getElementById(navString);
		for (var i=0; i<navRoot.childNodes[0].childNodes.length; i++) {
			var node = navRoot.childNodes[0].childNodes[i];
			if (node.tagName=="LI"){
				node.onmouseover=function() {
					this.className = "over";
				};
				node.onmouseout = function() {
					this.className = "";
				};
			}
		}
	}
}
window.onload = startList;

