﻿// 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');
                }

            
                /* switch sub nav tab */
                if(location.href.indexOf("overview.aspx") != -1 ) {
                    switchTab('carOverview');
                }            
                
                if(location.href.indexOf("specifications.aspx") != -1 ) {
                    switchTab('carSpec');
                }            

                if(location.href.indexOf("equipment.aspx") != -1 ) {
                    switchTab('carEquip');
                }    
                
                          
                if(location.href.indexOf("colour.aspx") != -1 ) {
                    switchTab('carColor');
                }
                
                if(location.href.indexOf("interior.aspx") != -1 ) {
                    switchTab('carInt');
                }

                if(location.href.indexOf("exterior.aspx") != -1 ) {
                    switchTab('carExt');
                }
                
                if(location.href.indexOf("multimedia.aspx") != -1 ) {
                    switchTab('carMedia');
                }      
                
                if(location.href.indexOf("pricing.aspx") != -1 ) {
                    switchTab('carPrice');
                } 
            
            }
