/* -*- c++ -*-
*/
//configure the paths of the images, plus corresponding target links
slideshowimages6("links/G6/img01.png", "links/G6/img02.png");
slideshowlinks6("http://www.aptps.com/", "http://www.revistaseguranca.com/index.php?option=com_frontpage&Itemid=1");

//configure the speed of the slideshow, in miliseconds
var slideshowspeed6=2500;
var whichlink6=0;
var whichimage6=0;

function slideit6(){
  if(!document.images){
    return;
  }
  document.images.slide6.src=slideimages6[whichimage6].src;
  whichlink6=whichimage6;

  if(whichimage6<slideimages6.length-1){
    whichimage6++;
  }else{
    whichimage6=0;
  }
  setTimeout("slideit6()",slideshowspeed6);
}
slideit6();