﻿// JScript File

<!--
var intervalL = ''; 
var currimgL = 0; 
var img_arrL=new Array(); 
var link_arrL=new Array(); 
var delay_arrL=new Array(); 

var delayImage = 3000;

img_arrL[0]='Images/foto_1.jpg';
img_arrL[1]='Images/foto_2.jpg';
img_arrL[2]='Images/foto_3.jpg';
img_arrL[3]='Images/foto_4.jpg';
img_arrL[4]='Images/foto_5.jpg';
img_arrL[5]='Images/foto_6.jpg';
img_arrL[6]='Images/foto_7.jpg';
img_arrL[7]='Images/foto_8.jpg';
img_arrL[8]='Images/foto_9.jpg';
img_arrL[9]='Images/foto_10.jpg';
img_arrL[10]='Images/foto_11.jpg';
img_arrL[11]='Images/foto_12.jpg';
//link_arrL[0]='http://www.bargainsbridge.com';
//delay_arrL[0]=2000;

var ImagePos = 0;
var Imageflag = 0;




function startIntervalL()
{ intervalL = window.setTimeout('tTimerL()', delayImage ); }

function tTimerL()
{
    clearTimeout(intervalL);
    if( document.readyState != 'complete') 
    { 
        intervalL = window.setTimeout('tTimerL()', delayImage );
        return; 
    }

    nextImageL();
}

function nextImageL()
{
   if( ImagePos == 0 )
   {
        document.all.slideImage1.src = img_arrL[currimgL++];
        if(currimgL>img_arrL.length-1)currimgL=0;
   } 
    
    if( ImagePos == 1 )
   {
        document.all.slideImage2.src = img_arrL[currimgL++];
        if(currimgL>img_arrL.length-1)currimgL=0;
   }
   
   if( ImagePos == 2 )
   {
       document.all.slideImage3.src = img_arrL[currimgL++];
       if(currimgL>img_arrL.length-1) currimgL = 0;  
   }
  
  //document.all.bannerlink.href=link_arrL[currimgL];
   ImagePos++;
   if(ImagePos==3) 
   {
        ImagePos = 0;
        if( Imageflag == 1 ){
            ImagePos = Math.min( Math.floor( Math.random()*3), 2 );            
        }
        
        if( currimgL == 0 )
            Imageflag = 1-Imageflag;
   }
    
  intervalL = window.setTimeout('tTimerL()', delayImage );
}
startIntervalL();
-->


