<!-- 
function get_random()
{
	var ranNum= Math.floor(Math.random()*19);
	return ranNum;
}

var whichNum = get_random();

function getImage(num)
{
	var images=new Array(19)
		images[0] = "images/aibos.jpg";
		images[1] = "images/ammersee.jpg";
		images[2] = "images/anza_borego.jpg";
		images[3] = "images/boston.jpg";
		images[4] = "images/cloister.jpg";
		images[5] = "images/desert_lily.jpg";
		images[6] = "images/foosball.jpg";
		images[7] = "images/harz_plant.jpg";
		images[8] = "images/harz_roadside.jpg";
		images[9] = "images/lancaster_pa.jpg";
		images[10] = "images/mafia_beach.jpg";
		images[11] = "images/mammoth.jpg";
		images[12] = "images/neckar_bridge.jpg";
		images[13] = "images/nevada.jpg";
		images[14] = "images/pittsburgh.jpg";
		images[15] = "images/severn_bridge.jpg";
		images[16] = "images/stonehenge.jpg";
		images[17] = "images/utah.jpg";
		images[18] = "images/zion.jpg";
	return images[num]; 				
}	

function getCaption(num)
{
	var caption = new Array(19)
		caption[0] = "AIBOs at RoboCup2006 in Bremen, Germany"
		caption[1] = "Ammersee. About an hour outside Munich, Germany"
		caption[2] = "Rainy day in Anza Borego State Park in California"
		caption[3] = "A night in Boston's Public Garden"
		caption[4] = "Augustins Museum cloister in Toulouse, France"
		caption[5] = "Desert lilies are hard to find"
		caption[6] = "Anyone up for some foosball?"
		caption[7] = "Cool plant in the Harz Mountains (Germany)"
		caption[8] = "Photographing roadside flowers in the Harz region of Germany"
		caption[9] = "A country road in Lancaster County, Pennsylvania"
		caption[10] = "Mafia beach in Angra dos Reis, Brazil"
		caption[11] = "An icy view from Mammoth, California"
		caption[12] = "Pedestrian bridge over the Neckar River in Germany"
		caption[13] = "Objects in mirror are closer than they appear"
		caption[14] = "Pittsburgh"
		caption[15] = "The Severn Bridges crosses from England to Wales"
		caption[16] = "Druids like to stack rocks in mysterious ways"
		caption[17] = "Somewhere in Utah along I-15"
		caption[18] = "Entering Zion National Park (yes, that's my Uhaul)"
	return caption[num];
}
//-->

