var photo=new Array()
var num=0
photo[0]="fc1.jpg"
photo[1]="fc2.jpg"
photo[2]="fc3.jpg"
photo[3]="fc4.jpg"
photo[4]="fc5.jpg"
photo[5]="fc6.jpg"
photo[6]="fc7.jpg"
photo[7]="fc8.jpg"
photo[8]="fc9.jpg"
numero=num+1

function precedente() {
  if (num>0) {
    num--
      document.image.src=photo[num];
    numero=num+1
  }
}
function suivante() {
  if(num<photo.length-1) {
    num++
      document.image.src=photo[num];
    numero=num+1
  }
}
