function fixup() {
	if (document.getElementById) {
		var nav = document.getElementById("nav");
		if (nav) {
			nav = nav.childNodes[0];
			for (i=0; i<nav.childNodes.length; i++) {
				node = nav.childNodes[i];
				if (((node.nodeName=="LI") && (node.className=="realmoonwalkstories"))) {
					node.onmouseover=function() {
						for (j=0; j<this.childNodes.length; j++) {
							if (this.childNodes[j].nodeName=="UL") {
								this.childNodes[j].style.display="block";
							}
						}
					}
					node.onmouseout=function() {
						for (j=0; j<this.childNodes.length; j++) {
							if (this.childNodes[j].nodeName=="UL") {
								this.childNodes[j].style.display="none";
							}
						}
					}
					//correct height of child anchor tag because IE doesnt support child selectors
					for (j=0; j<node.childNodes.length; j++) {
						if (node.childNodes[j].nodeName=="A") {
							node.childNodes[j].style.height="45px";
						}
					}
					
				}
			}
		}
	}
}
window.onload = function() {fixup();}