 function MenuMaker() {
	if (document.all && document.getElementById) {
		var navRoot = document.getElementById("navDD");
		var node = "";
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload = new function() {
  MenuMaker();
}

var axel = Math.random() + "";
var ord = axel * 1000000000000000000;
var tileno = 0;

function doCheckNodes(parent) {
    for (var i=0; i < parent.childNodes.length; i++) {
        var el = parent.childNodes[i];
        
        if(el.childNodes && el.childNodes.length > 0) { 
            doCheckNodes(el); }
        else { 
            doHideSmallAds(el);
        }
    }
}


function InputFocus() {
  var aryInputs = document.getElementsByTagName('input');
  var iAryLngth = aryInputs.length;
  
  for(var i=0; i<iAryLngth; i++) {
    if (aryInputs[i].title == "Start") {
      aryInputs[i].focus();
      aryInputs[i].select();
      return;
    }
  }
}
window.onload = InputFocus;
