//  copyright 2006 David Deatherage
//  http://CleanEdgeDesign.com

/*
picList5 = new Array (
"sections/4x4/spirit/roll1_the4x4_day.jpg",
"sections/4x4/spirit/roll2_the4x4_night.jpg"
)

var imgCount5=picList5.length;
var currentPic5=-1;
var timer5;
var j5=0; //sets number of times to rotate in line 8 of rotate function "if j>"

function rotate5() {
  if (document.images) {
   currentPic5++;
     if (currentPic5==imgCount5) {
     currentPic5=0;
	 j5++; 
	 }
	 //set number of times to rotate
	 if (j5>8) {
	   stoprotate5();
	   j5=0; 
	   currentPic5=-1;
	   document.thephoto5.src=picList5[0];
	 } else {
  		document.thephoto5.src=picList5[currentPic5];
  		timer5=window.setTimeout("rotate5()", 4000);
	 		}
  }
}


function stoprotate5() {
 window.clearTimeout(timer5);
}

*/

picList6 = new Array (
"sections/4x4/sports-4x4/4x4_top.jpg",
"sections/4x4/sports-4x4/4x4_top_night.jpg"
)

var imgCount6=picList6.length;
var currentPic6=-1;
var timer6;
var j6=0; 

function rotate6() {
  if (document.images) {
   currentPic6++;
     if (currentPic6==imgCount6) {
     currentPic6=0;
	 j6++; 
	 }
	 //set number of times to rotate
	 if (j6>8) {
	   stoprotate6();
	   j6=0; 
	   currentPic6=-1;
	   document.thephoto6.src=picList6[0];
	 } else {
  		document.thephoto6.src=picList6[currentPic6];
  		timer6=window.setTimeout("rotate6()", 4000);
	 		}
  }
}

function stoprotate6() {
 window.clearTimeout(timer6);
}