
		// JavaScript to interpolate random images into a page.
		var ic = 4;     // Number of alternative images
		var agavePhoto = new Array(ic);  // Array to hold filenames
			
	agavePhoto[0] = "images/shared/photos/agave_amber_jug.jpg";
	agavePhoto[1] = "images/shared/photos/agave3bottles.jpg";
	agavePhoto[2] = "images/shared/photos/agave_group_sm.jpg";
	agavePhoto[3] = "images/AgaveFlavorGroup.jpg";

	function pickRandom(range) {
	if (Math.random)
	return Math.round(Math.random() * (range-1));
	else {
	var now = new Date();
	return (now.getTime() / 1000) % range;
	}
	}
	// Write out an IMG tag, using a randomly-chosen image name.
	var choice = pickRandom(ic);
