startList = function() {
	if (document.all&&document.getElementById) {
		cssdropdownRoot = document.getElementById("dropdown");
		for (x=0; x<cssdropdownRoot.childNodes.length; x++) {
			node = cssdropdownRoot.childNodes[x];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

if (window.attachEvent) {
	window.attachEvent("onload", startList)
}
else {
	window.onload=startList;
}



function AppearFade(divId, formId) {
	document.getElementById('lewb').style.display = 'none';
	document.getElementById('gepl').style.display = 'none';
	document.getElementById('ghs').style.display = 'none';
	document.getElementById('ghcr').style.display = 'none';
	document.getElementById('ghc').style.display = 'none';
	document.getElementById('gho').style.display = 'none';
	if(!Element.visible(divId)) {
		new Effect.Appear(divId, { duration: 2.0 });
	}
	else {
		new Effect.Fade(divId, { duration: 2.0 });
	}
}



function AppearFade2(divId, formId) {
	document.getElementById('org_1').style.display = 'none';
	document.getElementById('org_2').style.display = 'none';
	document.getElementById('org_3').style.display = 'none';
	if(!Element.visible(divId)) {
		new Effect.Appear(divId, { duration: 2.0 });
	}
	else {
		new Effect.Fade(divId, { duration: 2.0 });
	}
}

