/*
document.write(unescape('%3Cscript%20type%3D%22text/javascript%22%20src%3D%22http://www.greenblock.com/includes/js/prototype.js%22%3E%3C/script%3E'));
document.write(unescape('%3Cscript%20type%3D%22text/javascript%22%20src%3D%22http://www.greenblock.com/includes/js/scriptaculous.js%22%3E%3C/script%3E'));
document.write(unescape('%3Cscript%20type%3D%22text/javascript%22%20src%3D%22http://www.greenblock.com/includes/js/mongoticker.js%22%3E%3C/script%3E'));

    startList = function() {
				if (document.all&&document.getElementById) {
					navRoot = document.getElementById("nav");
					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=startList;
*/

function element(id) {
 if(document.getElementById != null) {
  return document.getElementById(id);
 }
 if(document.all != null) {
  return document.all[id];
 }
 if(document.layers != null) {
  return document.layers[id];
 }
 return null;
} 