// make the array of imageslocationList = new Array('corporate', 'florida', 'georgia', 'midwest',                         'north_atlantic', 'northeast', 'southwest',                         'texas'); // Position will point to successive images in the locationList arrayPosition = 0;function imageFlip() {// increment the pointer  if(Position == locationList.length-1) {    Position = 0;  } else {    Position++;  }// change the imagedocument.images['locator'].src = 'images/locations/'+locationList[Position]+'.jpg';// do it againsetTimeout('imageFlip()', 2000);}
