<!-- // IMGrotator

   var IMG=new Array();
   var IMGNo=0;

   IMG[0]="images/elements/head.jpg";
   IMG[1]="images/elements/head.jpg";
   IMG[2]="images/elements/overhead.gif";
   IMG[3]="images/elements/overhead2.jpg";

   var preloadedimages=new Array();
   for (i=1;i<IMG.length;i++){
      preloadedimages[i]=new Image();
      preloadedimages[i].src=IMG[i];
   }

function setTransition(){
   if (document.all){
      IMGrotator.filters.revealTrans.Transition=Math.floor(Math.random()*23);
      IMGrotator.filters.revealTrans.apply();
   }
}

function playTransition(){
   if (document.all)
      IMGrotator.filters.revealTrans.play()
}

function nextIMG(){
   if(IMGNo<IMG.length-1)IMGNo++ ;
      else IMGNo=0;
   setTransition();
   document.images.IMGrotator.src=IMG[IMGNo];
   playTransition();
   theTimer=setTimeout("nextIMG()", 15000);
}
//-->