﻿// Create an arrary of image names...
srcArray=new Array();
srcArray[1]="images/common/a_menu_aboutus1.gif";
srcArray[2]="images/common/p_menu_aboutus1.gif";
srcArray[3]="images/common/a_menu_contact1.gif";
srcArray[4]="images/common/p_menu_contact1.gif";
srcArray[5]="images/common/a_menu_warranty1.gif";
srcArray[6]="images/common/p_menu_warranty1.gif";
srcArray[7]="images/common/a_menu_wheretobuy1.gif";
srcArray[8]="images/common/p_menu_wheretobuy1.gif";
//srcArray[9]="images/common/promos.jpg";
//srcArray[10]="images/common/a_promos.jpg";
srcArray[9]="images/common/specials.jpg";
srcArray[10]="images/common/a_specials.jpg";
srcArray[11]="images/common/a_buynowbutton.gif";
srcArray[12]="images/common/p_buynowbutton.gif";
srcArray[13]="images/common/a_menu_featurelist1.gif";
srcArray[14]="images/common/p_menu_featurelist1.gif";

// Load the images into the array...
function imageLoad() {

    imgArray = new Array();
  
    for (i=0; i< srcArray.length; i++) {
        imgArray[i]= new Image();
        imgArray[i].src=srcArray[i];
    }
}

// Swap an image...
function imageSwap(index, image) {
  {
    document[image].src=imgArray[index].src;
  }
}

