
/*
the naming scheme in /about/images must stay the same. 03.jpg, 73.jpg etc.
if you add more images to about/images increase "totimg" to correspond with new total.
any questions conoverm at g mail
*/

var time = self.setInterval("imgseq()",2500)
var i = "1"
var totimg = 150
function imgseq()
{
		if (i<10)
				{
					i="0"+i;
				}
			if (i>totimg)
				{
					i="01";
				}				
	document.getElementById("seq").src="http://www.litebriteneon.com/about/images/"+i+".jpg"
//	document.getElementById("txt").text=i
i++	
		}



