﻿// JScript File

root = "/corporateWeb2k8"
company_on      = new Image ( );
company_off     = new Image ( );
company_on.src  = root + "/images/portal/button_header_company_on.png";
company_off.src = root + "/images/portal/button_header_company_off.png";

dealers_on      = new Image ( ); 
dealers_off     = new Image ( );
dealers_on.src  = root + "/images/portal/button_header_dealers_on.png";
dealers_off.src = root + "/images/portal/button_header_dealers_off.png";

store_on = new Image ( );
store_off = new Image ( );
store_on.src = root + "/images/portal/button_header_store_on.png";
store_off.src = root + "/images/portal/button_header_store_off.png";

history_on = new Image ( );
history_off = new Image ( );
history_on.src = root + "/images/portal/button_header_history_on.png";
history_off.src = root + "/images/portal/button_header_history_off.png";

fullLine_on = new Image ( );
fullLine_off = new Image ( );
fullLine_on.src = root + "/images/portal/button_seeFullLine_on.png";
fullLine_off.src = root + "/images/portal/button_seeFullLine_off.png";


    function button_on ( imgId ) {
      if ( document.images )
      {
        butOn = eval ( imgId + "_on.src" );
        document.getElementById(imgId).src = butOn;
      }
    }

    function button_off ( imgId ) {
      if ( document.images )
      {
        butOff = eval ( imgId + "_off.src" );
        document.getElementById(imgId).src = butOff;
      }
    }