/* photo-names.js - descriptions of all the random photos
 */
var palt_arr = new Array(
	"mitacf-03 sends james the lake",			// main-1
	"with sarah and margaret in sf japantown",		// main-2
	"los peregrinos... chalma, mexico",			// main-3
	"with crhim at the pretty getty",			// main-4
	"jesuits for korea",					// main-5
	"jean donovan community 2005-06",			// main-6
	"biggest and littlest kim sisters",			// main-7
	"the elder bbang club sisters",				// main-8
	"mardi gras 2006 at chardin",				// main-9
	"jean donovan community 2006-07",			// main-10
	"fort collins, colorado",				// main-11
	"san diego zoo with ariadne!",				// main-12
	"beautiful, beautiful stanford",			// main-13
	"the palace of fine arts... *sigh*",			// main-14
	"mitacf FIGHTING! pride",				// main-15
	"riot and i on the last day of weltjugendtag 2005",	// main-16
	"oak church gyo-sah's outing to sushi house",		// main-17
	"the elder kim sisters at camp one way",		// main-18
	"million dollar view from the jdc",			// main-19
	"03 revisits the magnolias in 06"			// main-20


	);
// 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;
}
