/* -*- c++ -*-
*/
//configure the paths of the images, plus corresponding target links
slideshowimages2("links/G2/img01.png", "links/G2/img02.png", "links/G2/img03.png");
slideshowlinks2("http://www.apav.pt/portal/", "http://www.juliosantos.net/outros/Contactos%20Bombeiros%20nacional.htm", "http://www.apsi.org.pt/");

//configure the speed of the slideshow, in miliseconds
var slideshowspeed2=2500;
var whichlink2=0;
var whichimage2=0;

function slideit2(){
  if(!document.images){
    return;
  }
  var d = document.getElementById('slide2');
  d.src=slideimages2[whichimage2].src;
  whichlink2=whichimage2;

  if(whichimage2<slideimages2.length-1){
    whichimage2++;
  }else{
    whichimage2=0;
  }
  setTimeout("slideit2()",slideshowspeed2);
}
slideit2();
