// JavaScript Document
/* 
   Javascript array of global finance  
   images used by code to rotate images on 
   second level pages.
   
   The array should contain the list of image names
   to be used in the set of rotating images for the 
   html page this script is included in.  
   It is assumed that the image names will contain a 
   sequential integer at the end of the image file 
   name prior to the image file extension 
   (i.e. image-something1.jpg, image-something2.jpg, etc)
   The file names should contain the relative path to the
   image file.
   
*/
var randImg = new Array();
randImg[0]="images/image-globalfinance1.jpg";
randImg[1]="images/image-globalfinance2.jpg";
randImg[2]="images/image-globalfinance3.jpg";
randImg[3]="images/image-globalfinance4.jpg";