<!--
objBase = new Array("leftLarge");
obj = new Array();
dropDown = function () {
	if ( document.all && document.getElementById ) {
		for (a=0;a<objBase.length;a++) {
			for (b=0;b<document.all.length;b++) {
				if (document.all[b].id == objBase[a] ) {obj.unshift(objBase[a]); break;	}
			}
		}
		for (h=0;h<obj.length;h++) {
			root = document.getElementById(obj[h]);
			for ( i=0; i<root.childNodes.length; i++ ) {
				tag = root.childNodes[i];
				if (tag.nodeName == "LI") {
					tag.onmouseover = function() { this.className += " over"; }
					tag.onmouseout = function() { this.className = this.className.replace(" over", ""); }
				}
			}
		}
	}
}

function MM_checkPlugin(plgIn, theURL, altURL, autoGo) { //v4.0
  var ok=false; document.MM_returnValue = false;
  with (navigator) if (appName.indexOf('Microsoft')==-1 || (plugins && plugins.length)) {
    ok=(plugins && plugins[plgIn]);
  } else if (appVersion.indexOf('3.1')==-1) { //not Netscape or Win3.1
    if (plgIn.indexOf("Flash")!=-1 && window.MM_flash!=null) ok=window.MM_flash;
    else if (plgIn.indexOf("Director")!=-1 && window.MM_dir!=null) ok=window.MM_dir;
    else ok=autoGo; }
  if (!ok) theURL=altURL; if (theURL) window.location=theURL;
}

window.onload = dropDown;

//-->