// JavaScript Document
//<![CDATA[
var flashheaders = new Array();
var flashheadercounter = 0;

startList = function() {
if (document.all&&document.getElementById&&navigator.appName=="Microsoft Internet Explorer") {
if(document.getElementById("menu")) {
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+=" hover";
  	}
  	node.onmouseout=function() {
  	this.className=this.className.replace(" hover", "");
    }
	
	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+=" hover";
					}
					node3.onmouseout=function() {
					this.className=this.className.replace(" hover", "");
					}	
				}
			}
		}	
	}
}
   
   /*
   for(j=0; j<node.childNodes.length; j++) {
	   subnode = node.childNodes[j];
	   if(subnode.nodeName=="LI") {
		   subnode.onmouseover=function() {
		   this.className+=" over";
		   }
		   subnode.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>';

   }
  }
 }
}
}
var oldIEFixOnload = window.onload;
if (typeof window.onload != "function") {
	window.onload = startList;
} else {
window.onload = function() {
  oldIEFixOnload();
  startList();
}
}
//]]>
