	// JavaScript Document
	//<![CDATA[

function openquickhelp(pageid){
	if(pageid != "") {
		quickhelp = window.open('/?id='+pageid, 'QuickHelp', 'width=905,height=550,scrollbars=yes,resizable=yes,toolbar=no,location=no,status=no');
		quickhelp.focus();
	}
}

var flashheaders = new Array();
var flashheadercounter = 0;

startList = function() {
if (document.all&&document.getElementById&&navigator.appName=="Microsoft Internet Explorer") {
if(document.getElementById("topmenu")) {
navRoot = document.getElementById("topmenu");
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", "");
    }
   }
   for(j=0; j<node.childNodes.length; j++) {

		node2 = node.childNodes[j];
		if(node2.nodeName=="UL") {
			for(k=0; k<node2.childNodes.length; k++) {
				node3 = node2.childNodes[k];
					if(node3.nodeName=="LI") {
					node3.onmouseover=function() {
					this.className+=" over";
					}
					node3.onmouseout=function() {
					this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	}
}
}
if(flashheaders) {
for(i=1; i <= flashheadercounter; i++) {
if(document.getElementById(flashheaders[i][0])) {
document.getElementById(flashheaders[i][0]).innerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+flashheaders[i][3]+'" height="'+flashheaders[i][4]+'">'+
	 '<param name="movie" value="'+flashheaders[i][1]+'">'+
	 '<param name=quality value="high">'+
	 '<param name="FlashVars" value="'+flashheaders[i][2]+'" />'+
	 '<param name="wmode" value="transparent">'+
	 '<embed src="'+flashheaders[i][1]+'" quality="high" FlashVars="'+flashheaders[i][2]+'" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" wmode="transparent" width="'+flashheaders[i][3]+'" height="'+flashheaders[i][4]+'"></embed>'+
	 '</object>';

   }
  }
 }
}
}
window.onload=startList;
	//]]>