// JavaScript Document

if (document.images) {
emupics = new Array(8);
emupics[0] = "http://www.emich.edu/studentcenter/acui/RotatingGallery/bluffton11.png";
emupics[1] = "http://www.emich.edu/studentcenter/acui/RotatingGallery/bluffton22.png";
emupics[2] = "http://www.emich.edu/studentcenter/acui/RotatingGallery/bluffton33.png";
emupics[3] = "http://www.emich.edu/studentcenter/acui/RotatingGallery/bluffton44.png";
emupics[4] = "http://www.emich.edu/studentcenter/acui/RotatingGallery/bluffton55.png";
emupics[5] = "http://www.emich.edu/studentcenter/acui/RotatingGallery/bluffton66.png";
emupics[6] = "http://www.emich.edu/studentcenter/acui/RotatingGallery/bluffton77.png";
emupics[7] = "http://www.emich.edu/studentcenter/acui/RotatingGallery/bluffton88.png";
}





var timer = null
var	 counter = 0

function rotatingimages() {
	    timer=setTimeout("rotatingimages()", 7000);
		counter++;
		if (counter >= 8)
		counter = 0;
		document.emuimages.src = emupics[counter];
}
