/* -*- c++ -*-
*/
//configure the paths of the images, plus corresponding target links
slideshowimages1("links/G1/img01.png", "links/G1/img02.png", "links/G1/img03.png", "links/G1/img04.png", "links/G1/img05.png", "links/G1/img06.png", "links/G1/img07.png", "links/G1/img08.png", "links/G1/img09.png", "links/G1/img10.png");
slideshowlinks1("http://www.psp.pt", "http://www.gnr.pt", "http://www.pj.pt", "http://www.sef.pt", "http://www.asae.pt", "http://www.marinha.pt/Marinha/PT/Menu/DescobrirMarinha/EstruturaOrganizativa/Area_aut_maritima/policia_maritima/", "http://www.interpol.int/", "http://www.fbi.gov/", "http://www.sis.pt", "http://www.europol.europa.eu/");

//configure the speed of the slideshow, in miliseconds
var slideshowspeed1=2500;
var whichlink1=0;
var whichimage1=0;

function slideit1(){
  if(!document.images){
    return;
  }
  var d = document.getElementById('slide1');
  d.src=slideimages1[whichimage1].src;
  whichlink1=whichimage1;

  if(whichimage1<slideimages1.length-1){
    whichimage1++;
  }else{
    whichimage1=0;
  }
  setTimeout("slideit1()",slideshowspeed1);
}
slideit1();
