<!--	actpicA = 1;		piccountA = 7;	actpicB = 8;		piccountB = 55;	interval = 2500;	var timer;	function SetPic (){	document.images.imgprevA.src = actpicA+".jpg";	document.images.imgprevB.src = actpicB+".jpg";}	function NextPic (){	if (actpicA == piccountA) actpicA = 1;	else actpicA++;	if (actpicB == piccountB) actpicB = 8;	else actpicB++;		SetPic();}	function SlideShow (){	timer = setInterval ("NextPic();", interval);}	-->
