	/* Original:  CodeLifter.com (support@codelifter.com)
	** Web Site:  http://www.codelifter.com
	** This script and many more are available free online at 
	** The JavaScript Source!! http://javascript.internet.com
	*/
	var slideShowSpeed = 5000; // Set slideShowSpeed (milliseconds)
	var crossFadeDuration = 5; // Duration of crossfade (seconds)
	var Pic = new Array(); // Specify the image files
	Pic[0] = 'Images/Sponsors/bayTrust200x100.gif';
	Pic[1] = 'Images/Sponsors/rotEnergyTrust200x100.gif';
	Pic[2] = 'Images/Sponsors/cogs200x100.gif';
	Pic[3] = 'Images/Sponsors/nzLottery200x100.gif';
	Pic[4] = 'Images/Sponsors/rdc200x100.gif';
	var t;	// do not edit anything below this line
	var j = 0;
	var k = 1;
	var p = Pic.length;
	var preLoad = new Array();
	for (i = 0; i < p; i++) 
	{	
		preLoad[i] = new Image();
		preLoad[i].src = Pic[i];
	}
	function runSlideShow()
	{	
		if (document.all) 
		{
			document.images.SlideShow.style.filter="blendTrans(duration=2)";
			document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
			document.images.SlideShow.filters.blendTrans.Apply();
		}
		document.images.SlideShow.src = preLoad[j].src;
		if (document.all) 
		{	
			document.images.SlideShow.filters.blendTrans.Play();
		}
		j = j + 1;
		if (j > (p - 1)) j = 0;
		t = setTimeout('runSlideShow()', slideShowSpeed);
	}
