var imgs = new Array(
		new img(3,"img1","gifs/jack.gif","gifs/triton.gif","gifs/triton.gif",""),
		new img(4,"img2","gifs/allan.gif","gifs/gerro.gif","gifs/cloe.gif","gifs/april.gif","",""),
		new img(4,"img3","gifs/margie.gif","gifs/tunza.gif","gifs/belle.gif","gifs/brun.gif",""),
		new img(2,"img4","gifs/helene.gif","gifs/georgia.gif","",""),
		new img(2,"img5","gifs/linda.gif","gifs/skye.gif","",""),
		new img(2,"img6","gifs/jason.gif","gifs/tomahawk.gif","",""),
		new img(3,"img7","gifs/lindac.gif","gifs/krypton.gif","gifs/taboo.gif",""),
		new img(2,"img8","gifs/art.gif","gifs/jason1.gif","",""),
		new img(2,"img9","gifs/anna.gif","gifs/roxy.gif","",""),
		new img(2,"img10","gifs/justin.gif","gifs/holly.gif","",""),
		new img(2,"img11","gifs/kevin.gif","gifs/nala.gif","",""),
		new img(3,"img12","gifs/dave.gif","gifs/lynne.gif","gifs/lexi.gif",""),
		new img(3,"img20","gifs/alex.gif","gifs/jpike.gif","gifs/dpike.gif","","")
		);

function startChange()
{

	changePic();
	
	setTimeout("startChange()", 3000);

}

function img(iCount, sHolder, sPath, sPath1, sPath2, sPath3, sPath4, sPath5, sPath6)
{

	this.count = iCount;
	this.holder = sHolder;
	this.path0 = sPath;
	this.path1 = sPath1;
	this.path2 = sPath2;
	this.path3 = sPath3;
	this.path4 = sPath4;
	this.path5 = sPath5;
	this.path6 = sPath6;
	this.current = 0;

}

function changePic()
{

	for(i=0;i<=imgs.length-1;i++){

		if((i % 2) > 0)
		{
		
			setTimeout("", 500);
		
		}

		//alert(imgs[i].holder);

		document.images[imgs[i].holder].filters[0].apply();

		if(imgs[i].current + 1 < imgs[i].count)
		{
			
			//alert(imgs[i].current);
			
			imgs[i].current += 1;
				
		}
		else
		{
			
			imgs[i].current = 0;
			
		}
			
		//alert("imgs[i].path" + imgs[i].current.toString());
					
		document.images[imgs[i].holder].src = eval("imgs[i].path" + imgs[i].current.toString());
		
		document.images[imgs[i].holder].filters[0].play();
		
	}

}

