// rollover script writen by SMK
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
    if ((bName == "Netscape" && bVer >= 3) || 
        (bName == "Microsoft Internet Explorer" && bVer >= 4)) br = "n3"; 
    else br = "n2";
    
    if (br== "n3") {
    
	homeon = new Image();          
    homeon.src = "../navigation/nav_home_over.gif";       // Active Image
    homeoff = new Image(); 
    homeoff.src = "../navigation/nav_home.gif";   // Inactive Image
    	 
    compprofileon = new Image();          
    compprofileon.src = "../navigation/nav_compprofile_over.gif";       // Active Image
    compprofileoff = new Image(); 
    compprofileoff.src = "../navigation/nav_compprofile.gif";   // Inactive Image   
        
	investoron = new Image();          
    investoron.src = "../navigation/nav_investor_over.gif";       // Active Image
    investoroff = new Image(); 
    investoroff.src = "../navigation/nav_investor.gif";   // Inactive Image
		
	locationson = new Image();          
    locationson.src = "../navigation/nav_locations_over.gif";       // Active Image
    locationsoff = new Image(); 
    locationsoff.src = "../navigation/nav_locations.gif";   // Inactive Image
		
	sitemapon = new Image();          
    sitemapon.src = "../navigation/nav_sitemap_over.gif";       // Active Image
    sitemapoff = new Image(); 
    sitemapoff.src = "../navigation/nav_sitemap.gif";   // Inactive Image

    careerson = new Image();          
    careerson.src = "../navigation/nav_careers_over.gif";       // Active Image
    careersoff = new Image(); 
    careersoff.src = "../navigation/nav_careers.gif";   // Inactive Image
    careersad = new Image(); 
    careersad.src = "../navigation/nav_holder.gif";   // Swap Image 
	
	contactuson = new Image();          
    contactuson.src = "../navigation/nav_contactus_over.gif";       // Active Image
    contactusoff = new Image(); 
    contactusoff.src = "../navigation/nav_contactus.gif";   // Inactive Image
	
	operatingon = new Image();          
    operatingon.src = "../navigation/nav_operating_over.gif";       // Active Image
    operatingoff = new Image(); 
    operatingoff.src = "../navigation/nav_operating.gif";   // Inactive Image
	

        }

function usiOn(imgName) {
    if (br== "n3") {
    document[imgName].src = eval(imgName + "on.src");
    }
}

function usiOff(imgName) {
    if (br== "n3") {
    document[imgName].src = eval(imgName + "off.src");
    }
}

// -->

