

				
// set these variables 		
var numberOfLastImage = 10;	
var numberOfFirstImage = 1;	
var delayIn100thSeconds = 300;

var destination = new Array();
var slide = new Array();



slide[1] = "http://www.domainebovy.ch/images2/Bkgd/01.jpg";
destination[1] = "image1.htm"; 

slide[2] = "http://www.domainebovy.ch/images2/Bkgd/02.jpg";
destination[2] = "image2.htm"; 

slide[3] = "http://www.domainebovy.ch/images2/Bkgd/03.jpg";
destination[3] = "image3.htm"; 

slide[4] = "http://www.domainebovy.ch/images2/Bkgd/04.jpg";
destination[4] = "image4.htm"; 

slide[5] = "http://www.domainebovy.ch/images2/Bkgd/05.jpg";
destination[5] = "image5.htm"; 
 
slide[6] = "http://www.domainebovy.ch/images2/Bkgd/06.jpg";
destination[6] = "image6.htm"; 

slide[7] = "http://www.domainebovy.ch/images2/Bkgd/07.jpg";
destination[7] = "image7.htm"; 

slide[8] = "http://www.domainebovy.ch/images2/Bkgd/08.jpg";
destination[8] = "image8.htm"; 

slide[9] = "http://www.domainebovy.ch/images2/Bkgd/09.jpg";
destination[9] = "image9.htm"; 

slide[10] = "http://www.domainebovy.ch/images2/Bkgd/10.jpg";
destination[10] = "image10.htm"; 


var slideNumber = 0;



function showNextSlide()
{	
	slideNumber++
	if(slideNumber > numberOfLastImage )	// if past last slide
		{
			slideNumber = numberOfFirstImage ;
		}

	document.screen.src = slide[slideNumber]; 	// send slide to screen
	
	setTimeout("showNextSlide()",delayIn100thSeconds * 6);

}

