<!--

//hange number of images below
var number_of_images=3;

//change speed below (in seconds)
var speed=4;
var step=1;
var whichimage=1;

function slideit()
{
   if (!document.images)
     return
   if (document.all)
     document.images.slide.filters.blendTrans.apply();
     
   document.images.slide.src=eval("image"+step+".src");
   
   if (document.all)
      document.images.slide.filters.blendTrans.play();
      
   whichimage=step;
   
   if (step<number_of_images)
     step++;
   else
     step=1;
     
   if (document.all)
      setTimeout("slideit()",speed*900+3000);
   else
      setTimeout("slideit()",speed*900);
}

function slidelink()
{
    if (whichimage==1)
       parent.main.location.href="#";
    else if (whichimage==2)
       parent.main.location.href="#";
    else if (whichimage==3)
        parent.main.location.href="#";
}

//-->