// (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/2_centre_nuit.jpg';
Picture[2]  = 'jan/3_galerie.jpg';
Picture[3]  = 'jan/4_opera.jpg';
Picture[4]  = 'jan/5_salon.jpg';
Picture[5]  = 'jan/6_chalet.jpg';
Picture[6]  = 'jan/7_lecture.jpg';
Picture[7]  = 'jan/8_sport.jpg';
Picture[8]  = 'jan/9_chevaux.jpg';
Picture[9]  = 'jan/10_ski.jpg';
Picture[10]  = 'jan/11_bocage.jpg';
Picture[11]  = 'jan/12_etang.jpg';
Picture[12]  = 'jan/13_chenes.jpg';
Picture[13]  = 'jan/14_kayak.jpg';
Picture[14]  = 'jan/15_cavaliere.jpg';
Picture[15]  = 'jan/16_cha_lapalice.jpg';
Picture[16]  = 'jan/17_cha_chouvigy.jpg';
Picture[17]  = 'jan/18_chat_billy.jpg';
Picture[18]  = 'jan/19_forteresse.jpg';
Picture[19]  = 'jan/20_king_kong.jpg';
Picture[20]  = 'jan/21_manege.jpg';
Picture[21]  = 'jan/22_elephant.jpg';
Picture[22]  = 'jan/23_puy.jpg';
Picture[23]  = 'jan/24_parapente.jpg';
Picture[24]  = 'jan/25_vulcania.jpg';
Picture[25]  = 'jan/26_dragon.jpg';
Picture[26]  = 'jan/27_train.jpg';
Picture[27]  = 'jan/28_14_juillet.jpg';
Picture[28]  = 'jan/fin_visite_vichy.jpg';
Picture[29]  = 'jan/1_hall.jpg';



Caption[1]  = "<strong>CENTRE THERMAL DES DOMES,<br> LA NUIT</strong>";
Caption[2]  = "<strong>GALERIE DU PARC DES SOURCES</strong>";
Caption[3]  = "<strong>PALAIS DES CONGRES<br> ET OPERA</strong>";
Caption[4]  = "<strong>SALON NAPOLEON<br> DANS LE CASINO</strong>";
Caption[5]  = "<strong>CHALET DE LA SUITE DE NAPOLEON III</strong>";
Caption[6]  = "<strong>PAUSE LECTURE<br> DANS LE PARC NAPOLEON</strong>";
Caption[7]  = "<strong>SPORT ET FARNIENTE</strong>";
Caption[8]  = "<strong>COURSE DE CHEVAUX, <br>LE SOIR</strong>";
Caption[9]  = "<strong>SKI NAUTIQUE <br>SUR LE LAC D’ALLIER</strong>";
Caption[10]  = "<strong>LE BOCAGE BOURBONNAIS</strong>";
Caption[11]  = "<strong>L’ETANG DE PIROT,<br> FORET DE TRONÇAIS</strong>";
Caption[12]  = "<strong>LES CHENES JUMEAUX, FORET DE TRONÇAIS</strong>";
Caption[13]  = "<strong>KAYAK EN FAMILLE <br>SUR LA SIOULE</strong>";
Caption[14]  = "<strong>CAVALIERES DANS LE BOCAGE</strong>";
Caption[15]  = "<strong>CHATEAU DE LA PALICE</strong>";
Caption[16]  = "<strong>CHATEAU DE CHOUVIGNY,<br> GORGES DE LA SIOULE</strong>";
Caption[17]  = "<strong>CHATEAU DE BILLY</strong>";
Caption[18]  = "<strong>FORTERESSE<br> DE BOURBON L’ARCHAMBAULT</strong>";
Caption[19]  = "<strong>KING KONG</strong>";
Caption[20]  = "<strong>LE TRAIN AZTEKA</strong>";
Caption[21]  = "<strong>JADE AVEC PAPA ET MAMAN</strong>";
Caption[22]  = "<strong>LE PUY DE DOME</strong>";
Caption[23]  = "<strong>PARAPENTE<br> AU DESSUS DES VOLCANS</strong>";
Caption[24]  = "<strong>VUE EXTERIEURE DE VULCANIA</strong>";
Caption[25]  = "<strong>LE DRAGON RIDE</strong>";
Caption[26]  = "<strong>LE VOLCANBULL</strong>";
Caption[27]  = "<strong>14 JUILLET A VULCANIA !!!</strong>";
Caption[28]  = "<br>Nous vous souhaitons un agréable séjour<br> à l'<strong>HOTEL ARVERNA</strong><br>à <strong>VICHY</strong> "; 
Caption[29]  = "<strong>HALL DE SOURCES</strong>";

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();
}}

