img0 = new Image();
img0.src = "images/photos_gite/gite_de_france_0.jpg";

img1 = new Image();
img1.src = "images/photos_gite/gite_de_france_1.jpg";

img2 = new Image();
img2.src = "images/photos_gite/gite_de_france_3.jpg";

img3 = new Image();
img3.src = "images/photos_gite/gite_de_france_5.jpg";

img4 = new Image();
img4.src = "images/photos_gite/gite_de_france_6.jpg";


var i_strngth=1
var i_image=0

var imageurl = new Array()
imageurl[0] ="images/photos_gite/gite_de_france_0.jpg"
imageurl[1] ="images/photos_gite/gite_de_france_1.jpg"
imageurl[2] ="images/photos_gite/gite_de_france_3.jpg"
imageurl[3] ="images/photos_gite/gite_de_france_3.jpg"
imageurl[4] ="images/photos_gite/gite_de_france_5.jpg"
imageurl[5] ="images/photos_gite/gite_de_france_6.jpg"

function showimage() {
if(document.all) {
if (i_strngth <=80) {
photosgite.innerHTML="<img style='filter:alpha(opacity="+i_strngth+")' src="+imageurl[i_image]+" border=0>";
i_strngth=i_strngth+3
var timer=setTimeout("showimage()",100)
}
else {
clearTimeout(timer)
var timer=setTimeout("hideimage()",1000)
}
}

if(document.layers) {
clearTimeout(timer)
document.photosgite.document.write("<img src="+imageurl[i_image]+" border=0>")
document.close()
i_image++
if (i_image >= imageurl.length) {i_image=0}
var timer=setTimeout("showimage()",2000)

}
}


function hideimage() {
if (i_strngth >=-3) {
photosgite.innerHTML="<img style='filter:alpha(opacity="+i_strngth+")' src="+imageurl[i_image]+" border=0>";
i_strngth=i_strngth-4
var timer=setTimeout("hideimage()",300)
}
else {
clearTimeout(timer)
i_image++
if (i_image >= imageurl.length) {i_image=0}
i_strngth=1
var timer=setTimeout("showimage()",100)
}
}
