var c=0
var s
function photoinfo()
{
if (c%3==0){
  document.getElementById('photo-info').alt = "Final Fantasy XIV Interview";
  document.getElementById('photo-info').src = "../img/actu/interviewff.jpg";
  document.getElementById('lien-info').href = "http://forum.finalfantasy14.eu/viewtopic.php?f=20&t=1406";
}
if (c%3==1){
  document.getElementById('photo-info').alt = "Final Fantasy XIV Linkshell";
  document.getElementById('photo-info').src = "../img/wingsknight.jpg";
  document.getElementById('lien-info').href = "http://forum.finalfantasy14.eu/viewforum.php?f=83";
}
if (c%3==2){
  document.getElementById('photo-info').alt = "Final Fantasy XIV Benchmark";
  document.getElementById('photo-info').src = "../img/actu/benchmark.jpg";
  document.getElementById('lien-info').href = "http://www.finalfantasy14.eu/download/FFXIVBenchmark.zip";
}
c=c+1
s=setTimeout("photoinfo()",5000)
}
