<!---
//---------------------------------------------------------------
// Menu v1.0 
// This script written by Cromwell Technologies LLC
// www.CromwellTechnologies.com         
// All rights reserved.   
// 
// Browser Sniffer
var isIE = (document.getElementById && document.all)?true:false;
var isNS4 = (document.layers)?true:false;
var isNS6 = (document.getElementById && !document.all)?true:false;
var obj = (isIE)?"document.all":"document.getElementById"


var timer;

function hideAllTimed() {
	timer = setTimeout('hideAll()',2000);
}

function hideAll() {
	hoverMenu();
		for(var i = 0; i < 11; i++) {
			eval(obj+'("o'+i+'").className="visno"');
			eval(obj+'("b'+i+'").className="visyes"');
		    submenu = 'sub'+i
			theObj = eval(obj+'(submenu)');
		    theObj.style.visibility = "hidden";
		}
}
function showSub(subName) {
      theObj = eval(obj+'(subName)');
      theObj.style.visibility = "visible";
}
function modclass(id,cname) {

	eval(obj+'("'+id+'").className="'+cname+'"');
}

function hoverMenu() {
	// Re-set timer for sub menus
	if(timer)
 	clearTimeout(timer)
}

function MNU_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MNU_p) d.MNU_p=new Array();
    var i,j=d.MNU_p.length,a=MNU_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MNU_p[j]=new Image; d.MNU_p[j++].src=a[i];}}
}
//-->


