// Enhanced Suckerfish menu// refer to http://javascript.about.com/library/blsfmenu1.htm// for more information// you may copy this code but please keep the comments intact// fix for IE hoversfh = function() {var sfE = document.getElementById("nav").getElementsByTagName("li"); for (var i=sfE.length-1; i >= 0; i--) {sfE[i].onmouseover=function() { this.className+=" sfh"; }; sfE[i].onmouseout=function() { this.className=this.className.replace(new RegExp(" sfh\\b"), ""); }; }}; if (window.attachEvent) window.attachEvent("onload", sfh);// fix for IE position:fixed bugfunction posTop() {return typeof window.pageYOffset != 'undefined' ?  window.pageYOffset : document.documentElement && document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ? document.body.scrollTop : 0;} function moveit() {var y = posTop() + 'px';document.getElementById('nav').style.top = y;} window.onscroll = moveit;var myimages=new Array()function preloadimages(){for (i=0;i<preloadimages.arguments.length;i++){myimages[i]=new Image()myimages[i].src=preloadimages.arguments[i] }}universal = function() {if (document.all && document.getElementById) {navRoot = document.getElementById("universal");for (j=0; j<navRoot.childNodes.length; j++) {node = navRoot.childNodes[j];if (node.nodeName.toUpperCase() == "LI") {node.onmouseover = function() {this.className += "highlight"; }node.onmouseout = function() {this.className = this.className.replace("universal","");    }   }  } }}window.onload=universal;//gomenu example belowfunction dreamtasker(dream){var URL = document.dream.dream.options[document.dream.dream.selectedIndex].value;window.location.href = URL;