		var imgCount = 12;
		var captions = new Array(imgCount);
		captions[0] = "The Ernest Goodlife Band performing on the roofdeck at a party.";
		captions[1] = "DU's rockclimbing at a local rock quarry.";
		captions[2] = "MIT as seen from the roofdeck.";
		captions[3] = "DU's preparing to eat at a recent Endicott retreat.";
		captions[4] = "Playing poker during a house-wide camping trip.";
		captions[5] = "Watching a Red Sox game on the front lawn.";
		captions[6] = "Brothers hiking in the alps.";
		captions[7] = "Six brothers backpacking in Yosemite.";
		captions[8] = "Brothers skiiing in Vermont.";
		captions[9] = "A pledge class during our formal Initiation ceremony.";
		captions[10] = "Snowboarding on the harvard bridge during a rare snow day.";
		captions[11] = "Brothers cheering on the MIT Soccer team, captained by DU Nick Nestle.";

		function randImage() {
			var randImg, imgFile, imgLoc, imgBigLoc;
			imgLoc = "imgs/rotating/";
			imgBigLoc = "imgs/rotating/full/";

			if (imgCount == 0)
                		imgfile = "default.jpg";
			else {
		                randImg = Math.floor(Math.random() * imgCount);
                		imgfile = "img" + randImg + ".jpg";
            		}
			document.write('<a href="' + imgBigLoc + imgfile + '">');
            		document.write('<img width="175" height="200" src="' + imgLoc + imgfile + '" /></a>');
            		document.write('<br/><br/><br/><div class="caption">' + captions[randImg] + '</div>');
        	}