/* -*- c++ -*-
*/
//configure the paths of the images, plus corresponding target links
slideshowimages5("links/G5/img01.png", "links/G5/img02.png", "links/G5/img03.png", "links/G5/img04.png", "links/G5/img05.png");
slideshowlinks5("http://www.psp.pt/Pages/pesquisa_detalhe.aspx?unidade=269", "http://www.anv.pt/", "http://www.vigilancia.com.pt/", "http://sites.google.com/site/agentesdesegurancaprivada/", "http://www.coess.org/Default.htm");

//configure the speed of the slideshow, in miliseconds
var slideshowspeed5=2500;
var whichlink5=0;
var whichimage5=0;

function slideit5(){
  if(!document.images){
    return;
  }
  var d = document.getElementById('slide5');
  d.src=slideimages5[whichimage5].src;
  whichlink5=whichimage5;

  if(whichimage5<slideimages5.length-1){
    whichimage5++;
  }else{
    whichimage5=0;
  }
  setTimeout("slideit5()",slideshowspeed5);
}
slideit5();