// JavaScript Document Greenway
	
// CSS Dropdown Navigation for IE6-
startList = function(){
	if(document.all&&document.getElementById){
		navRoot = document.getElementById("menu");
		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;



//////////////////////////////////////////////////////////////////////////////////////////////////////
// for older browsers that do not support Array.push method
if(typeof Array.prototype.push == "undefined")
  Array.prototype.push = function(){
    var i=0;
    b=this.length,a=arguments;
    for(i;i<a.length;i++)this[b+i]=a[i];
    return this.length
  }
