i = 0

function GetCount(){
	if (i == 3){
		i = 1
	}else{
		i = i + 1;
	}
//	alert("Loading number " + i + "...");

	document.getElementById('pic').src = "images/recruitment/2008/" + i + ".310.strap.jpg";
	setTimeout("GetCount()", 5000);				//UPDATES EVERY 5 SECONDS
}

window.onload=function(){GetCount();}			//call when everything has loaded
