// list of splash objects with rotation times

function Banner(source, link, delay_sec)
{
   this.source = source
   this.link = link
   this.delay_sec = delay_sec
}

function assign_banners(ao_banners)
{
   var i = 0;

   //see splashes-20080101.js for previous splashes
   
   // by pje 2008-05-28
   //ao_banners[i++] = new Banner("/splashes/gicm-up.gif",   "/publications/gic-report.htm", 5.2);
   //ao_banners[i++] = new Banner("/splashes/gicm-twist.gif",   "/publications/gic-report.htm", 5.2);
   //ao_banners[i++] = new Banner("/splashes/gicm-down.gif",   "/publications/gic-report.htm", 1.8);

   // by pje 2008-12-10
   //ao_banners[i++] = new Banner("/splashes/ECS-7-204P.gif",   "http://www.european-coatings.com/_misc/popup/navigator/showdetails.cfm?&op=20&servicetag=exhibitortablist&id=17256", 13);

   // by pje 2007-06-23
   //ao_banners[i++] = new Banner("/splashes/additives2-in.gif",   "/conferences/conferencedetails.htm", 3.3);
   //ao_banners[i++] = new Banner("/splashes/additives2-cross.gif",   "/conferences/conferencedetails.htm", 4.2);
   //ao_banners[i++] = new Banner("/splashes/additives2-out.gif",   "/conferences/conferencedetails.htm", 1);

   // added by pje 2007-11-16 Temporarily Retired 2008-06-23
   //ao_banners[i++] = new Banner("/splashes/wsca-1.gif",   "/publications/wsca/index.htm", 8.4);
   //ao_banners[i++] = new Banner("/splashes/wsca-2.gif",   "/publications/wsca/index.htm", 1.6);

   // met 2007-04-25
   ao_banners[i++] = new Banner("/splashes/default-banner.png",   "http://www.pra-world.com/", 60);
}


