// JavaScript Document
function startList()  {
    if (document.all && document.getElementById) {
	var navRoot=$("dropselect");
	if(navRoot){
	    var elements = navRoot.childNodes;
	    for (i=0; i<elements.length; i++) {
		var node = elements[i];
		if (node.nodeName=="LI") {
		    node.onmouseover=function() {
			this.className+=" over";
		    }
		    node.onmouseout=function() {
			this.className=this.className.replace(" over", "");
		    }
		}
	    }
	}else{
	    if(_debug)_debug.log("do not have dropselect element");
	}
    }
}


function hideHeaderFooterInFrame() {
   if (top.location != document.location) {
       Element.hide('linkListRHS');
       Element.hide('testbedLinkBanner')
       Element.flatten('linkList');
       var ll2=$('linkList2');
       //var newpos=new coord(0,1);
       //ll2.style.top=newpos.toTopStyle();

       Element.hide('footerCopyright');
   }
}

