if (document.images) { // Preloaded images
	photo1 = new Image();
	photo1.src = "borrowedpics/2008-08-23 at 09-55-06.jpg";
	
	photo2 = new Image();
	photo2.src = "borrowedpics/aimee's-maiden-OC1-race.jpg";
	
	photo3 = new Image();
	photo3.src = "borrowedpics/race-on.jpg";
	
	photo4 = new Image();
	photo4.src = "borrowedpics/pep-talk.jpg";
	
	photo5 = new Image();
	photo5.src = "borrowedpics/cooling-off.jpg";
	
	photo6 = new Image();
	photo6.src = "borrowedpics/sr-masters-cheesin.jpg";
	
	photo7 = new Image();
	photo7.src = "borrowedpics/crissy-field.jpg";
	
	
}

function timeimgs(numb) { // Reusable timer
	thetimer = setTimeout("imgturn('" +numb+ "')", 3000);
}

function imgturn(numb) { // Reusable image turner
	if (document.images) {
		if (numb == "8") { // This will loop the image
			document["picture"].src = eval("photo2.src");
			timeimgs('1');
		}
		else { document["picture"].src = eval("photo" + numb + ".src");
		
			timeimgs(numb = ++numb);
		}
	}
}

