﻿// JScript File
if(document.images)
{
  var image_array = new Array();
	
  // path to the directory with images
  var path = 'images/site/';

  // enumeration of the "active" images
  image_array[0] = path + "navhomeon.gif";
  image_array[1] = path + "navaboutuson.gif";
  image_array[2] = path + "navwholesaleon.gif";
  image_array[3] = path + "naventerpriseon.gif";
  image_array[4] = path + "navcreateaccounton.gif";
  image_array[5] = path + "navfaqon.gif";
  image_array[6] = path + "navcontactuson.gif";

  image_array[7] = path + "navhome.gif";
  image_array[8] = path + "navaboutus.gif";
  image_array[9] = path + "navwholesale.gif";
  image_array[10] = path + "naventerprise.gif";
  image_array[11] = path + "navcreateaccount.gif";
  image_array[12] = path + "navfaq.gif";
  image_array[13] = path + "navcontactus.gif";
  
  var preload_image = new Array ();
 
  for(var i=0; i<image_array.length; i++)
  {
    preload_image[i]= new Image();
    preload_image[i].src = image_array[i];
  }
}

