function loadpage() {
browver = parseInt(navigator.appVersion);
browtype = navigator.appName;
browsertype = "old";
if (browtype = "Netscape" && !(browver < 4)) {
	browsertype = "new";
}
if (browtype = "Microsoft Internet Explorer" && !(browver < 4)) {
	browsertype = "new";
}
if (browsertype == "new") {
	thetimer = setTimeout("changeimage()",4000);
	storycode = 0;
	listofimages = new Array(9);
	listofimages[0] = new Image(366,244)
	listofimages[0].src = "/Utilities/News_and_Events/Spotlight/10allaz.jpg"
	listofimages[1] = new Image(366,244)
	listofimages[1].src = "/Utilities/News_and_Events/Spotlight/10gneiting.jpg"
	listofimages[2] = new Image(366,244)
	listofimages[2].src = "/Utilities/News_and_Events/Spotlight/10PBL.jpg"
	listofimages[3] = new Image(366,244)
	listofimages[3].src = "/Utilities/News_and_Events/Spotlight/10critters.jpg"
	listofimages[4] = new Image(366,244)
	listofimages[4].src = "/Utilities/News_and_Events/Spotlight/10Engineering.jpg"
	listofimages[5] = new Image(366,244)
	listofimages[5].src = "/Utilities/News_and_Events/Spotlight/10artshow.jpg"
	listofimages[6] = new Image(366,276)
	listofimages[6].src = "/Utilities/News_and_Events/Spotlight/10ASE.jpg"
	listofimages[7] = new Image(366,276)
	listofimages[7].src = "/Utilities/News_and_Events/Spotlight/10MusicSchol.jpg"
	listofimages[8] = new Image(366,276)
	listofimages[8].src = "/Utilities/News_and_Events/Spotlight/09mccarthy.jpg"
//	listofimages[9] = new Image(366,276)
//	listofimages[9].src = "/Utilities/News_and_Events/Spotlight/09gardening.jpg"
//	listofimages[10] = new Image(366,276)
//	listofimages[10].src = "/Utilities/News_and_Events/Spotlight/09gardening.jpg"
	window.document.coverstory.src = listofimages[0].src; 
}
}

function changeimage() {
if (browsertype == "new") {
	storycode = storycode + 1;
	if (storycode > 8) {
		storycode = 0;
	}
	imagesource = listofimages[storycode].src;
	window.document.coverstory.src = imagesource;
	thetimer = setTimeout("changeimage()",4000);
} else if (browsertype == "old") {
}
}

function changepage() {
	if (browsertype == "new") {
	if (storycode == 0) {
		newlocation = "/Utilities/News_and_Events/detailSQL.asp?Item=571";
	}
	else if (storycode == 1) {
		newlocation = "/Utilities/News_and_Events/detailSQL.asp?Item=577";
	}
	else if (storycode == 2) {
		newlocation = "/Utilities/News_and_Events/detailSQL.asp?Item=572";
	}
	else if (storycode == 3) {
		newlocation = "/Utilities/News_and_Events/detailSQL.asp?Item=575";
	}
	else if (storycode == 4) {
		newlocation = "/Utilities/News_and_Events/detailSQL.asp?Item=574";
	}
	else if (storycode == 5) {
		newlocation = "/Utilities/News_and_Events/detailSQL.asp?Item=570";
	}
	else if (storycode == 6) {
		newlocation = "/Utilities/News_and_Events/detailSQL.asp?Item=564";
	}
	else if (storycode == 7) {
		newlocation = "/Utilities/News_and_Events/detailSQL.asp?Item=558";
	}
	else if (storycode == 8) {
		newlocation = "/Utilities/News_and_Events/detailSQL.asp?Item=548";
	}
//	else if (storycode == 9) {
//		newlocation = "/Utilities/News_and_Events/detailSQL.asp?Item=535";
//	}
//	else if (storycode == 10) {
//		newlocation = "/Utilities/News_and_Events/detailSQL.asp?Item=535";
//	}
	location = newlocation;
	}
}