startList = function() {
	
	if (document.all && document.getElementById) {	// ie!
		
		// mainmenu
		mainmenuRoot = document.getElementById('menu');
		liNodes = mainmenuRoot.getElementsByTagName("LI");
		for (i=0; i<liNodes.length; i++) {
			node = liNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" hover";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" hover", "");
				}
			}
		}
		helpHoversInIe();	//info layers onloads (placed here to avoid multiple onloads).
	}
}

// info layers
function helpHoversInIe() {
	if (document.all&&document.getElementById) {
		allBQelements = document.getElementsByTagName("blockquote");
		var j = 0;
		var bqs = new Array();
		
		for(i=0;i<allBQelements.length;i++)	{
			if(allBQelements[i].id.indexOf('help_')>-1)	{
				bqs[j] = allBQelements[i];
				j++;

			}
		}
		
		for (i=0;i<bqs.length;i++) {
		
			bqs[i].onmouseover=function() {
					this.className+=" hover";
			}
			bqs[i].onmouseout=function() {
				this.className=this.className.replace(" hover", "");
			}
		
		}
		return true;
	}
}

window.onload=startList;
