

// The slideshow code bit

// configure seconds delay between changing (1000 = 1 second) //

var changeDelay = 3000

var altprod;
images=new Array();
images_pop=new Array();
index = 0;
currentindex = 0;

function changer()
{
	if(document.billboard)
	{
		if(altprod == 2 && index == 0 && images.length>1)index=1;
		currentindex = index;
		document.billboard.src = images[index].src;
		if(document.getElementById("imgDesc")){document.getElementById("imgDesc").innerHTML = imagesDesc[index];}
		index++;
		if (index == images.length)
		{
			index = 0;
		}
		setTimeout("changer()",changeDelay);
		return;
	}
}
