/*
Script by FPMC at http://jsarchive.8m.com
Updated by RobT at Direction for DP Seals 2010
*/

// NOTE: image paths set in file splashlibrary.js

//set duration (seconds) for each image
duration = 7;

//Please do not edit below
ads=[]; ct=0;
function switchAd() 
{
   var n=(ct+1)%src.length;
   if (ads[n] && (ads[n].complete || ads[n].complete==null)) 
   {
      document["splashimage"].src = ads[ct=n].src;
   }
   ads[n=(ct+1)%src.length] = new Image;
   ads[n].src = src[n];
   setTimeout("switchAd()",duration*1000);
}
onload = function()
{
   if (document.images) switchAd();
}
