<!-- Hide this script from old browsers.

// Copyright 2007 Jason Cheever. All rights reserved.

//---------------------------------------------------------------------------------------------------------
//
// Preloads "ORDER NOW!" button images and changes the image when the mouse rolls over it.
//
//---------------------------------------------------------------------------------------------------------

 // Itemize the images.
 image_list = new Array(
 "./images/order_now_red.gif",
 "./images/order_now_green.gif" );

 // Preload the images.'."\n";
 image_array = new Array();
 for ( index = 0; index < image_list.length; index++ ) {
  if ( document.images ) {
   image_array[ index ]     = new Image;
   image_array[ index ].src = image_list[ index ];
   }
  else {
   image_array[ index ].src = "";
  }
 }
 
 // Change an image.
 function change_image( image_field, new_image_index ) {
  if ( document.images ) {
   document[ image_field ].src = image_array[ new_image_index ].src;
  }
  return true;
 }
  
// End of hiding script from old browsers. -->
