/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


 var SlideShowSpeed = 7000;
            var CrossFadeDuration = 0;

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

            Picture[1]  = 'http://hotelsclubantalya.com/banner/content/images/hotelsclubantalya1.jpg';
            Picture[2]  = 'http://hotelsclubantalya.com/banner/content/images/hotelsclubantalya2.jpg';

            Caption[1]  = "";
            Caption[2]  = "";

            var tss;
            var iss;
            var jss = 1;
            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 runSlideShow(){
                if (document.all){
                    document.getElementById('PictureBox').style.filter='blendTrans(duration=2)';
                    document.getElementById('PictureBox').style.filter='blendTrans(duration=CrossFadeDuration)';
                    document.getElementById('PictureBox').filters.blendTrans.Apply();}
                document.getElementById('PictureBox').src = preLoad[jss].src;
                if (document.getElementById) document.getElementById('CaptionBox').innerHTML= Caption[jss];
                if (document.all) document.getElementById('PictureBox').filters.blendTrans.Play();
                jss = jss + 1;
                if (jss > (pss)) jss=1;
                tss = setTimeout('runSlideShow()', SlideShowSpeed);
            }
