/* -*- c++ -*-
*/
//configure the paths of the images, plus corresponding target links
slideshowimages4("links/G4/img01.png", "links/G4/img02.png", "links/G4/img03.png");
slideshowlinks4("http://www.inem.pt/", "http://www.saude24.pt/PresentationLayer/home_00.aspx", "http://www.anf.pt/");

//configure the speed of the slideshow, in miliseconds
var slideshowspeed4=2500;
var whichlink4=0;
var whichimage4=0;

function slideit4(){
  if(!document.images){
    return;
  }
  document.images.slide4.src=slideimages4[whichimage4].src;
  whichlink4=whichimage4;

  if(whichimage4<slideimages4.length-1){
    whichimage4++;
  }else{
    whichimage4=0;
  }
  setTimeout("slideit4()",slideshowspeed4);
}
slideit4();
