// SCRIPT DEFILEMENT DES IMAGES DANS HUBLOT_CORSE
// index_defilimage.js


var slideshow_width='400px' //SET SLIDESHOW WIDTH (set to largest image's width if multiple dimensions exist)
var slideshow_height='350px' //SET SLIDESHOW HEIGHT (set to largest image's height if multiple dimensions exist)
var pause=4000 //SET PAUSE BETWEEN SLIDE (3000=3 seconds)

var dropimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
dropimages[0]="images/g0_image0.gif"
dropimages[1]="images/g0_image1.jpg"
dropimages[2]="images/g0_image3.jpg"
dropimages[3]="images/g0_image8.jpg"
dropimages[4]="images/g0_image2.jpg"
dropimages[5]="images/g0_image6.jpg"
dropimages[6]="images/g0_image7.jpg"
dropimages[7]="images/g0_image9.jpg"
dropimages[8]="images/g0_image4.jpg"
dropimages[9]="images/g0_image5.jpg"
dropimages[10]="images/g0_image10.jpg"
dropimages[11]="images/g0_image0.gif"



////NO need to edit beyond here/////////////

var preloadedimages=new Array()
for (p=0;p<dropimages.length;p++){
preloadedimages[p]=new Image()
preloadedimages[p].src=dropimages[p]
}

var h=""
var w=""
aff()
var w_base=397
var h_base=85
var w_min=950
//largeur du tableau
var w_canvas=200
var ie4=document.all
var dom=document.getElementById
//alert(w)
if (w<w_min){
var w_pos=w_base}
else{
//var w_pos=w_base+(w/w_min-1)*500-10
var w_pos=w_base+(w-w_min)/2
}

if (ie4||dom)
document.write('<div style="position:absolute;z-index: 0;top:'+h_base+';left:'+w_pos+';width:'+slideshow_width+';height:'+slideshow_height+';overflow:hidden"><div id="canvas0" style="position:absolute;z-index: 0;top:'+h_base+';left:'+w_canvas+';width:'+slideshow_width+';height:'+slideshow_height+';top:-'+slideshow_height+'"></div><div id="canvas1" style="position:absolute;z-index: 0;top:'+h_base+';left:'+w_canvas+';width:'+slideshow_width+';height:'+slideshow_height+';top:-'+slideshow_height+'"></div></div>')
else
document.write('<img name="defaultslide" src="'+dropimages[0]+'">')


var curpos=parseInt(slideshow_height)*(-1)
var degree=200
var curcanvas="canvas0"
var curimageindex=0
var nextimageindex=1


function movepic(){
if (curpos<0){
curpos=Math.min(curpos+degree,0)
tempobj.style.top=curpos+"px"
}
else{
clearInterval(dropslide)
nextcanvas=(curcanvas=="canvas0")? "canvas0" : "canvas1"
tempobj=ie4? eval("document.all."+nextcanvas) : document.getElementById(nextcanvas)
tempobj.innerHTML='<img src="'+dropimages[nextimageindex]+'">'
nextimageindex=(nextimageindex<dropimages.length-1)? nextimageindex+1 : 0
setTimeout("rotateimage()",pause)
}
}

function rotateimage(){
if (ie4||dom){
resetit(curcanvas)
var crossobj=tempobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
crossobj.style.zIndex++
var temp='setInterval("movepic()",1)'
dropslide=eval(temp)
curcanvas=(curcanvas=="canvas0")? "canvas1" : "canvas0"
}
else
document.images.defaultslide.src=dropimages[curimageindex]
curimageindex=(curimageindex<dropimages.length-1)? curimageindex+1 : 0
}

function resetit(what){
curpos=parseInt(slideshow_height)*(-1)
var crossobj=ie4? eval("document.all."+what) : document.getElementById(what)
crossobj.style.top=curpos+"px"
}

function startit(){
var crossobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
crossobj.innerHTML='<img src="'+dropimages[curimageindex]+'">'
rotateimage()
}

if (ie4||dom)
window.onload=startit
else
setInterval("rotateimage()",pause)

function aff(){
if (document.all)
{
h=document.body.clientHeight;
w=document.body.clientWidth;
}
else
{
w=window.innerWidth;
h=window.innerHeight;
}
}

function refresh(){
document.location="index.html";
}

