/* photo-names.js - descriptions of all the random photos
 */
var palt_arr = new Array(
	"2002-2003 small group leaders",			// photo-1
	"campfire and s'mores at chapter camp",			// photo-2
	"some acf-ers jamming",					// photo-3
	"winter retreat 2003 in rindge, n.h.",			// photo-4
	"class of 2003 leading worship @ senior banquet",	// photo-5
	"staff praying for jeremiah"				// photo-6
	);
// be sure that the last line ends in a ); instead of a ,

function photo_alt(id)
{
  if((id >= 1) && (id <= palt_arr.length))
    return palt_arr[id-1];
  else
    return "Uncaptioned photo";
}
function photo_maxid()
{
  return palt_arr.length;
}
