
<!--

browser_name = navigator.appName;
browser_version = parseFloat(navigator.appVersion);

if (browser_name == "Netscape" && browser_version >= 3.0)
        {
        roll = 'true';
        }
else if (browser_name == "Microsoft Internet Explorer" && browser_version >= 3.0)
        {
        roll = 'true';
        }
else
        {
        roll = 'false';
        }

arImageSrc = new Array (
	"images/rollovers/about_olive.gif",
	"images/rollovers/contact_olive.gif",
	"images/rollovers/home_olive.gif",
	"images/rollovers/mapping_olive.gif",
	"images/rollovers/mapstore_olive.gif",
	"images/rollovers/news_olive.gif",
	"images/sidebar/ashtech_mouseover.gif",
        "images/sidebar/drafting_mouseover.gif",
        "images/sidebar/data_mouseover.gif",
        "images/sidebar/Adsupport_mouseover.gif",
        "images/sidebar/mapping_mouseover.gif",
        "images/sidebar/support_mouseover.gif",
        "images/sidebar/survey_mouseover.gif",
        "images/sidebar/Adbuy_mouseover.gif",
        "images/sidebar/ESRItraining_mouseover.gif",
        "images/sidebar/ESRIsupport_mouseover.gif",
        "images/sidebar/services_mouseover.gif")

arImageList = new Array ();
         for (counter in arImageSrc) {
             arImageList[counter] = new Image();
             arImageList[counter].src = arImageSrc[counter];
         }

function msover(img1,ref1)
        {
                if (roll == 'true')
                        {
                        document.images[img1].src = ref1;
                        }
        }

function msout(img1,ref1)
        {
                if (roll == 'true')
                        {
                        document.images[img1].src = ref1;
                        }
        }
//-->
