// Set the slideshow speed (in milliseconds)
var speed = 6000;

// Set a flag to determine if the image can be filtered (ie only effect)
var filterFlag = false;

var Pic = new Array();
Pic[0] = 'images/sitemares/s1.jpg';
Pic[1] = 'images/sitemares/s2.jpg';
Pic[2] = 'images/sitemares/s3.jpg';
Pic[3] = 'images/sitemares/s6.jpg';
Pic[4] = 'images/sitemares/s7.jpg';
Pic[5] = 'images/sitemares/s9.jpg';
Pic[6] = 'images/sitemares/s10.jpg';
Pic[7] = 'images/sitemares/s11.jpg';
Pic[8] = 'images/sitemares/s12.jpg';
Pic[9] = 'images/sitemares/s13.jpg';
Pic[10] = 'images/sitemares/s14.jpg';
Pic[11] = 'images/sitemares/s15.jpg';
Pic[12] = 'images/sitemares/s16.jpg';
Pic[13] = 'images/sitemares/s17.jpg';
Pic[14] = 'images/sitemares/s18.jpg';
Pic[15] = 'images/sitemares/s19.jpg';
Pic[16] = 'images/sitemares/s20.jpg';
Pic[17] = 'images/sitemares/s21.jpg';
Pic[18] = 'images/sitemares/s22.jpg';
Pic[19] = 'images/sitemares/s23.jpg';

var Text = new Array();
Text[0] = 'How to avoid LIVING SITEMARES with Kestrel...';
Text[1] = 'A familiar problem?';
Text[2] = 'Kestrel\'s solution for house builders';
Text[3] = 'A familiar problem?';
Text[4] = 'Kestrel\'s solution for house builders';
Text[5] = 'A familiar problem?';
Text[6] = 'Kestrel - First and only with calcium organic skin and core.';
Text[7] = 'A familiar problem?';
Text[8] = 'Kestrel deliver again! 50,000 customer deliveries a year.';
Text[9] = 'Kestrel always deliver! 30,000 tonnes of pvc profile delivered each year.';
Text[10] = 'A familiar problem?';
Text[11] = 'Vast range allows optimum solution.';
Text[12] = 'A familiar problem?';
Text[13] = 'Foiled again! K-box stops site thieves & lets you keep product safely locked away.';
Text[14] = 'A familiar problem?';
Text[15] = 'Kestrel experience to the rescue. First to supply national housebuilders.  Supplied PVCu/UE to 100,000\'s houses, since 1990.';
Text[16] = 'Problem solved - Kestrel team invent another new product.';
Text[17] = 'Kestrel dream team always on hand - Tony Crutcher, Laurence Hicks, Darren Dow, John Gunn.';
Text[18] = 'Kestrel dream team always on hand - Kevin Everett, Shane Torn, Paul Rees, Linda Mawby.';
Text[19] = 'Kestrel - The difference. On site training. Integrated. Calcium organic. K-Box. Innovative. Try us!';

// Slideshow 1
var i = 0;
var j = 0;
var p = Pic.length;

var Pre = new Array();
for (i=0;i<p;i++)
{
	Pre[i] = new Image();
	Pre[i].src = Pic[i];
}

function runSlideShow()
{
	// check that we can access the image by its element id
	if (document.getElementById)
	{
		// check that the next image in the slideshow have loaded
		if (Pre[j].complete)
		{
			picToChange = document.getElementById('picChange');
			textToChange = document.getElementById('textChange');
		
			// set up the filters
			try{
				// standard blend transition
				picToChange.style.filter="blendTrans(duration=1)";
				picToChange.filters.blendTrans.Apply();
			}
			catch(err){}
			// swap the images
			picToChange.src = Pre[j].src;
			picToChange.alt = Text[j];
			textToChange.innerHTML = Text[j];

			// again check if the image can be filtered
			try{
				// standard blend transition
				picToChange.filters.blendTrans.Play();
			}
			catch(err){}
			// move counters onto next image
			j++;
			if (j>=p) j=0;
		
			// call the slideshow function
			setTimeout('runSlideShow()', speed);
		}
		// images not yet loaded so wait a while
		else
		{
			// call the slideshow function
			setTimeout('runSlideShow()', speed);
		}
	}
}