<!--
function doTransone() {
	divObj.filters[0].apply();
	divObj.style.visibility = "hidden";  
	divObj.filters[0].play();
}
function doTranstwo() {
	divObj.filters[0].apply();
	divObj.style.visibility = "visible";  
	divObj.filters[0].play();
}

browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
        if (browserName == "Microsoft Internet Explorer" && browserVer >= 3) version = "n3";
        else version = "n2";
        if (browserName == "Netscape" && browserVer >= 3) version = "n3";

        if (version == "n3") {
        home_on = new Image();
        home_on.src = "images/nav-home-on.gif";
		about_on = new Image();
        about_on.src = "images/nav-about-on.gif";
		models_on = new Image();
        models_on.src = "images/nav-models-on.gif";
		faq_on = new Image();
        faq_on.src = "images/nav-faq-on.gif";
		financial_on = new Image();
        financial_on.src = "images/nav-financial-on.gif";
		terminology_on = new Image();
        terminology_on.src = "images/nav-terminology-on.gif";
        contact_on = new Image();
        contact_on.src = "images/nav-contact-on.gif";
                    
        home_off = new Image();
        home_off.src = "images/nav-home-off.gif";
		about_off = new Image();
        about_off.src = "images/nav-about-off.gif";
		models_off = new Image();
        models_off.src = "images/nav-models-off.gif";
		faq_off = new Image();
        faq_off.src = "images/nav-faq-off.gif";
		financial_off = new Image();
        financial_off.src = "images/nav-financial-off.gif";
		terminology_off = new Image();
        terminology_off.src = "images/nav-terminology-off.gif";
		contact_off = new Image();
        contact_off.src = "images/nav-contact-off.gif";
       
		
        }

function ON(imgName) {
        if (version == "n3") {
        imgOn = eval(imgName + "on.src");
        document [imgName].src = imgOn;
        }
}
function OFF(imgName) {
        if (version == "n3") {
        imgOff = eval(imgName + "off.src");
        document [imgName].src = imgOff;
        }
}
// -->
