/* -*- c++ -*-
*/
//configure the paths of the images, plus corresponding target links
slideshowimages3("links/G3/img01.png", "links/G3/img02.png", "links/G3/img03.png");
slideshowlinks3("http://www.mai.gov.pt/", "http://www.proteccaocivil.pt/Pages/default.aspx", "http://www.cnpce.gov.pt/");

//configure the speed of the slideshow, in miliseconds
var slideshowspeed3=2500;
var whichlink3=0;
var whichimage3=0;

function slideit3(){
  if(!document.images){
    return;
  }
  var d = document.getElementById('slide3');
  d.src=slideimages3[whichimage3].src;
  whichlink3=whichimage3;

  if(whichimage3<slideimages3.length-1){
    whichimage3++;
  }else{
    whichimage3=0;
  }
  setTimeout("slideit3()",slideshowspeed3);
}
slideit3();