// JavaScript Document
if(document.images)
{
  var image_array = new Array();
	
  // path to the directory with images
  var path = '/content/';

  // enumeration of the "active" images
  image_array[0] = path + "button.jpg";
  image_array[1] = path + "button1.jpg";
  image_array[2] = path + "button2.jpg";
  image_array[3] = path + "button3.jpg";
  image_array[4] = path + "button4.jpg";
  image_array[5] = path + "button5.jpg";
  image_array[6] = path + "button6.jpg";
  image_array[7] = path + "button7.jpg";
  image_array[8] = path + "button8.jpg";

  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];
  }
}