<!--       ***This part picks images***
var caption="test caption #1";
var image="";
var banners=0;
function writeCaption() {
document.getElementById('captionBox').innerHTML = 'Amundsen Sea iceberg, West Antarctica, October 21, 2009.  Photo by Jane Peterson. Image courtesy of NASA.';
   }
function cycle() {
  if (++banners > 4) banners=1; 
    loadcaptions();
	loadbanners();
	document.banner1.src = image;
    window.setTimeout('cycle();',7200); 
  }
function loadcaptions() {
   if (banners==1)
      {
      document.getElementById('captionBox').innerHTML = 'Eastern Greenland at low altitude.  Image courtesy of NASA.<br><br>';
      }
   if (banners==2)
      {
	  document.getElementById('captionBox').innerHTML = 'Flight lines flown during Antarctic 2010 campaign. Photo by Michael Studinger. Image courtesy of NASA.<br><br>';
      }
   if (banners==3)
      {
      document.getElementById('captionBox').innerHTML = 'Getz Ice Shelf, Antarctic coast, November 5, 2010. Photo by Dick Ewers. Image courtesy of NASA.<br><br>';
      }
   if (banners==4)
      {
      document.getElementById('captionBox').innerHTML = 'Amundsen Sea iceberg, West Antarctica, October 21, 2009. Photo by Jane Peterson. Image courtesy of NASA.';
      }
    }
function loadbanners() {
   if (banners==1)
      {
      image="/data/icebridge/images/slideshow/eastern_greenland_at_low_altitude.jpg";
      }
   if (banners==2)
      {
      image="/data/icebridge/images/slideshow/flight_lines_antarctic_2010_campaign.jpg";
      }
   if (banners==3)
      {
      image="/data/icebridge/images/slideshow/getz_ice_shelf_antarctic_coast_11-5-2010.jpg";
      }
   if (banners==4)
      {
      image="/data/icebridge/images/slideshow/amundsen_sea_iceberg_w_antarctica.jpg";
      }
	}

//-->

<!--       ***This part picks links***
var link = "http://www.espo.nasa.gov/oib/photo.php"
function urlswitch() {
   if (banners==1)
      {
      link = "http://www.espo.nasa.gov/oib/photo.php";
      }
   if (banners==2)
      {
      link = "http://www.nasa.gov/mission_pages/icebridge/news/fall10/index.html";
      }
   if (banners==3)
      {
      link = "http://www.nasa.gov/mission_pages/icebridge/news/fall10/index.html";
      }
   if (banners==4)
      {
      link = "http://www.nasa.gov/centers/dryden/status_reports/DC-8_100209.html";
      }


return link;
}
//-->

function loadSlideFunctions () {
	writeCaption();
    window.setTimeout('cycle();',6000);
    (loadbanners());
    (urlswitch());
};
addLoadEvent(loadSlideFunctions);
