﻿var Pic1 = new Array() 
Pic1[0] = 'http://www.parisvipcasino.com/images/smallban/vip.jpg'
Pic1[1] = 'http://www.parisvipcasino.com/images/smallban/bonus.jpg'
Pic1[2] = 'http://www.parisvipcasino.com/images/smallban/300.jpg'
var slideShowSpeed1 = 2000

var ts
var js = 0
var ps = Pic1.length
var preLoad1 = new Array()
for (i = 0; i < ps; i++){
   preLoad1[i] = new Image()
   preLoad1[i].src = Pic1[i]
}
function runSlideShow1() {
if (window.ActiveXObject) { // Mozilla, Safari, ...
            slideShowIE1();
            }
else {     
       slideShow1();
              }
}
function slideShow1(){
   document.images.smallimg.src = preLoad1[js].src
   js = js + 1
   if (js > (ps-1)) js=0
   ts = setTimeout('slideShow1()', slideShowSpeed1)
}
function slideShowIE1(){
   if (document.all){
      document.images.smallimg.style.filter="blendTrans(duration=1)"
      document.images.smallimg.style.filter="blendTrans(duration=1)"
      document.images.smallimg.filters.blendTrans.Apply()      
   }
   document.images.smallimg.src = preLoad1[js].src
   if (document.all){
      document.images.smallimg.filters.blendTrans.Play()
   }
   js = js + 1
   if (js > (ps-1)) js=0
   ts = setTimeout('slideShowIE1()', slideShowSpeed1)
}
runSlideShow1()

