function cycleImage() {
	img_captions = new Array();

// captions: (link-url,image-path,alt-text)

	img_captions[0] = Array('http://csrs.nd.edu/','http://csrs.nd.edu/assets/images/rotator/1.jpg','');
	img_captions[1] = Array('http://csrs.nd.edu/','http://csrs.nd.edu/assets/images/rotator/2.jpg','');
	img_captions[2] = Array('http://csrs.nd.edu/','http://csrs.nd.edu/assets/images/rotator/3.jpg','');	
	img_captions[3] = Array('http://csrs.nd.edu/','http://csrs.nd.edu/assets/images/rotator/4.jpg','');	
	img_captions[4] = Array('http://csrs.nd.edu/','http://csrs.nd.edu/assets/images/rotator/5.jpg','');	
	img_captions[5] = Array('http://csrs.nd.edu/','http://csrs.nd.edu/assets/images/rotator/6.jpg','');	
	img_captions[6] = Array('http://csrs.nd.edu/','http://csrs.nd.edu/assets/images/rotator/7.jpg','');	
	img_captions[7] = Array('http://csrs.nd.edu/','http://csrs.nd.edu/assets/images/rotator/8.jpg','');	
	img_captions[8] = Array('http://csrs.nd.edu/','http://csrs.nd.edu/assets/images/rotator/9.jpg','');	

var num = img_captions.length;
	img_number  = Math.floor(Math.random()*(num));
	document.write('<a href="' + img_captions[img_number][0] + '"><img src="' + img_captions[img_number][1] + '" alt="' + img_captions[img_number][2] + '" border="0" /></a>');
}
