<!-- 
  	    var MyTimer;
        var iCounter1 = 0;
        var iCounter2 = 1;
        var iCounter3 = 2;
        var iCounter4 = 3;
        var iCounter5 = 4;
        var iCounter6 = 5;
		 	
		var iSecondDelay = 8;
 var ImgSrc = new Array ( 
'tn/tn-1.jpg'
,'tn/tn-2.jpg'
,'tn/tn-3.jpg'
,'tn/tn-4.jpg'
,'tn/tn-5.jpg'
,'tn/tn-6.jpg'
,'tn/tn-7.jpg'
,'tn/tn-8.jpg'
,'tn/tn-9.jpg'
,'tn/tn-10.jpg'
,'tn/tn-11.jpg'
,'tn/tn-12.jpg'
,'tn/tn-13.jpg'
,'tn/tn-14.jpg'
,'tn/tn-15.jpg'
,'tn/tn-16.jpg'
);
    var iElements = 16
    var PicCurrent = new Image();
    PicCurrent.src = ImgSrc[0];
	
    function MoveForwardOne()
	{
		    clearTimeout(MyTimer);
			fPaused = 0;
			iCounter1 = iCounter1 + 1;
			if(iCounter1 >= iElements)
			{
			   iCounter1 = 0;
			}
			iCounter2 = iCounter2 +1;
			if(iCounter2 >= iElements)
			{
			   iCounter2 = 0;
			}
			iCounter3 = iCounter3 +1;
			if(iCounter3 >= iElements)
			{
			   iCounter3 = 0;
			}		
			iCounter4 = iCounter4 +1;
			if(iCounter4 >= iElements)
			{
			   iCounter4 = 0;
			}		
			iCounter5 = iCounter5 +1;
			if(iCounter5 >= iElements)
			{
			   iCounter5 = 0;
			}
			iCounter6 = iCounter6 +1;
			if(iCounter6 >= iElements)
			{
			   iCounter6 = 0;
			}
			

			PicCurrent.src = ImgSrc[iCounter1];   // sets the image from the array
            document['Image1'].src = PicCurrent.src;   // changes the image
			PicCurrent.src = ImgSrc[iCounter2];   // sets the image from the array
			document['Image2'].src = PicCurrent.src;
			PicCurrent.src = ImgSrc[iCounter3];   // sets the image from the array
			document['Image3'].src = PicCurrent.src;
			PicCurrent.src = ImgSrc[iCounter4];   // sets the image from the array
			document['Image4'].src = PicCurrent.src;
			PicCurrent.src = ImgSrc[iCounter5];   // sets the image from the array
			document['Image5'].src = PicCurrent.src;
			PicCurrent.src = ImgSrc[iCounter6];   // sets the image from the array
			document['Image6'].src = PicCurrent.src;
		}	
	
		function ImageLoaded()
		{
			MyTimer = setTimeout('MoveForwardOne()', iSecondDelay * 1000);			   		   
		}
		
		// -->

