<!-- Beginning


	// *************************************************************
	//  ROLLOVER SCRIPT
	// *************************************************************
	// image substitution routine


    browserName = navigator.appName;
    browserVer = parseInt(navigator.appVersion);
   
    if (browserVer >= 3) version = "n3";
    else version = "n2";

    if (version == "n3") {

        arImageSrc = new Array ("smb_home.gif","smb_home_ro.gif",
                                "smb_about.gif","smb_about_ro.gif",
                                "smb_repair.gif","smb_repair_ro.gif",
                                "smb_maint.gif","smb_maint_ro.gif",
                                "smb_register.gif","smb_register_ro.gif",
                                "smb_contact.gif","smb_contact_ro.gif",
                                "smb_news.gif","smb_news_ro.gif",
                                "smb_careers.gif","smb_careers_ro.gif",
                                "smb_rfsurveys.gif","smb_rfsurveys_ro.gif");
        arImageList = new Array (20);
        for (counter in arImageSrc) {
            arImageList[counter] = new Image();
            arImageList[counter].src = "/images/" + arImageSrc[counter];
        }
    }

    function hilight(name, imNo) {
        if (version == "n3") {
            document.images[name].src = eval("arImageList["+imNo+"]" + ".src");
        }
    }



//-->
