﻿// JScript File
function switchTab(tabName) {
                //document.getElementById("home").className = "none";
                document.getElementById(tabName).className = "current";
            }
         
            
            window.onload = function() {
                /* switch main nav tab */
                if(location.href.indexOf("newcars") != -1 ) {
                    switchTab('navNewCars');
                }            
                
                if(location.href.indexOf("usedcars") != -1 ) {
                    switchTab('navUsedCars');
                }            

                if(location.href.indexOf("finance") != -1 ) {
                    switchTab('navFinance');
                }    
                
                          
                if(location.href.indexOf("specialoffers") != -1 ) {
                    switchTab('navSpecials');
                }
                
                if(location.href.indexOf("aboutus") != -1 ) {
                    switchTab('navAbout');
                }

                if(location.href.indexOf("contact") != -1 ) {
                    switchTab('navContact');
                }    
            
            }

