// (C) 2003 by CodeLifter.com Author: etLux
// Free for all users, but leave in this header.

var SlideShowSpeed = 3000;
var CrossFadeDuration = 2;

var Picture = new Array();
var Caption = new Array();
var showHot = false;

Picture[1]  = 'jan/1_bateau_hotel_vienne.jpg';
Picture[2]  = 'jan/2_Temple_Hotel_Vienne.jpg';
Picture[3]  = 'jan/3_cathedrale_Hotel_Vienne.jpg';
Picture[4]  = 'jan/4_Cloitre_Hotels_Vienne.jpg';
Picture[5]  = 'jan/5_eglise_Hotels_Vienne.jpg';
Picture[6]  = 'jan/6_pyramide_Hotel_Vienne.jpg';
Picture[7]  = 'jan/7_jardin_Hotels_Vienne.jpg';
Picture[8]  = 'jan/fin_visite_vienne.jpg';
Picture[9]  = 'jan/visite-Hotel-Vienne.jpg';



Caption[1]  = "Bâteau Le Livia<br>Croisière sur Le Rhône";
Caption[2]  = "Le Temple d'Auguste et Livie";
Caption[3]  = "Cathédrale St Maurice";
Caption[4]  = "le cloître St André le Bas";
Caption[5]  = "l'église Saint André le Bas";
Caption[6]  = "la Pyramide";
Caption[7]  = "le Jardin de Cybèle";
Caption[8]  = "Le GRAND HOTEL DE LA POSTE<br>vous souhaite un agréable séjour<br>à VIENNE";
Caption[9]  = "VISITEZ VIENNE";


 

var tss;
var iss;
var jss = 0;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function control(how){
if (showHot){
if (how=="H") jss = 1;
if (how=="F") jss = jss + 1;
if (how=="B") jss = jss - 1;
if (jss > (pss)) jss=1;
if (jss < 1) jss = pss;
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
}}

