var maxImg = 73;
var slideDelay=10000;
var ImgAry = new Array(maxImg);
ImgAry[1]="Lake Hill - Aleutian Pribilof";
ImgAry[2]="A puffin - Aleutian Pribilof";
ImgAry[3]="Alaska Native Medical Center";
ImgAry[4]="Water sports on Lake Aleknagik";
ImgAry[5]="Aerial view of Juneau - Douglas";
ImgAry[6]="Moose hunting - Dillingham";
ImgAry[7]="Four-wheeling";
ImgAry[8]="Southeast Alaska";
ImgAry[9]="July sunset in Dillingham";
ImgAry[10]="Arctic tundra";
ImgAry[11]="Aerial view of Sand Point";
ImgAry[12]="Jack Knife Mountain";
ImgAry[13]="Blanket toss (Kotzebue)";
ImgAry[14]="Breaking ocean ice (Kotzebue)";
ImgAry[15]="Arctic blueberries";
ImgAry[16]="Barrow crossroads";
ImgAry[17]="Chugachmiut";
ImgAry[18]="Barrow sunset";
ImgAry[19]="Berry picking in Kotzebue";
ImgAry[20]="Cultural week in Tatitlek";
ImgAry[21]="Black bear";
ImgAry[22]="Elk";
ImgAry[23]="Fall caribou";
ImgAry[24]="Dad and daughter fishing (Kotzebue)";
ImgAry[25]="False Pass Clinic";
ImgAry[26]="Rainbow over King Cove Harbor";
ImgAry[27]="Alaska Ferry - Eastern Aleutian Tribe";
ImgAry[28]="Fish drying - Eastern Aleutian Tribe";
ImgAry[29]="Sand Point Clinic";
ImgAry[30]="Sand Point";
ImgAry[31]="Fishing in Dillingham";
ImgAry[32]="Sand Point Boat Harbor";
ImgAry[33]="Kotzebue Sound";
ImgAry[34]="Aerial view of Akutan";
ImgAry[35]="Anesia Kudrin Clinic";
ImgAry[36]="Downtown - Eastern Aleutian Tribe Area";
ImgAry[37]="Tlingit dancer and son at Celebration in Juneau";
ImgAry[38]="False Pass";
ImgAry[39]="False Pass Clinic";
ImgAry[40]="Mount Edgecumbe";
ImgAry[41]="Ice washed up on beach - Kotzebue ";
ImgAry[42]="Alaska State Ferry - Kodiak";
ImgAry[43]="Beautiful sunrise - Kodiak";
ImgAry[44]="Humpback breeching - Kodiak";
ImgAry[45]="KANA Clinic";
ImgAry[46]="Kodiak Airport";
ImgAry[47]="Kodiak Boat Harbor";
ImgAry[48]="Kodiak Ferry Dock";
ImgAry[49]="Aerial view of Kotzebue";
ImgAry[50]="Rainbow over Maniilaq Health Clinic";
ImgAry[51]="Northern lights";
ImgAry[52]="Puffin";
ImgAry[53]="Sea lions";
ImgAry[54]="Autumn ice - Barrow";
ImgAry[55]="Denali Mountain";
ImgAry[56]="Kayak dredge - Barrow";
ImgAry[57]="Water skipping";
ImgAry[58]="Whale in front of mountains";
ImgAry[59]="Qutekcak Drum and Dance Group";
ImgAry[60]="Snow machines on Lagoon - Dillingham";
ImgAry[61]="Aerial view of Sand Point";
ImgAry[62]="St. Paul, Alaska Beach";
ImgAry[63]="Subsistence fishing - Dillingham City Dock";
ImgAry[64]="Three little bears following momma - Kodiak";
ImgAry[65]="Whale rib arch in Barrow";
ImgAry[66]="Juneau ferry dock";
ImgAry[67]="General store - Barrow";
ImgAry[68]="Skin boat - Barrow";
ImgAry[69]="Blanket Toss - Barrow";
ImgAry[70]="Arches in Barrow";
ImgAry[71]="Swimming at Lake Aleknagik - Dillingham";
ImgAry[72]="Norton Sound Regional Hospital";
ImgAry[73]="Kids at beach in Kenai";

function rotateImages(no)
{
	var iText = '<IMG SRC="' + recruitingImagePath + no + '.jpg" /><br /><SPAN ID="img_caption">' + ImgAry[no] + '</SPAN>';
	//	var iText = "<IMG SRC=\"/hr_rec_ext/i/slide/" + no + ".jpg\" /><br /><SPAN ID=\"img_caption\">"+ ImgAry[no] + "</SPAN>";
	var el = document.getElementById("mainPageImage");
	el.innerHTML=iText;
	var step;
	(no==maxImg)? step=1: step=++no;
	var preloadImage = new Image();
	preloadImage.src = recruitingImagePath + step + ".jpg";
	var cmd="rotateImages(" + step + ");";
	setTimeout(cmd,slideDelay);
}

startNo=Math.round(Math.random()*maxImg);
(startNo==0)?startNo++:startNo;
(startNo>maxImg)?startNo--:startNo;
rotateImages(startNo);
