/**
	randomly select a picture from the array and display with caption
**/

var pic = new Array()
var caption = new Array()
var used = new Array();
var npics = 25
var i

pic[0] = "images/RandomPics/Bower Center Building 215x323.jpg";
caption[0] = 'Bower Center Building';

pic[1] = "images/RandomPics/Andy Boothe - Best in Show 215x322.jpg";
caption[1] = 'Photo Show 2011<br/>Andy Boothe<br/>Best in Show';

pic[2] = "images/RandomPics/Art Show 215x215.jpg";
caption[2] = 'A SMAC Annual Event';

pic[3] = "images/RandomPics/as-2010 Mary Lou Koons 215x181.jpg";
caption[3] = 'Art Show 2010<br/>Mary Lou Koons';

pic[4] = "images/RandomPics/as-2010 Sonoma Bubbles by Whitney Brock 215x160.jpg";
caption[4] = 'Art Show 2010<br/>"Sonoma Bubbles"<br/>by Whitney Brock';

pic[5] = "images/RandomPics/Johnathan Dillon with car 215x161.jpg";
caption[5] = 'Johnathan Dillon';

pic[6] = "images/RandomPics/Lakeside Singers 215x215.jpg";
caption[6] = 'A SMAC Annual Event';

pic[7] = "images/RandomPics/lp-Laughter 101119 JReap 215x338.jpg";
caption[7] = 'Judy Reap performs in<br/>"Laughter is the Best Medicine"';

pic[8] = "images/RandomPics/lw-2011 Nikki Giovanni.jpg";
caption[8] = 'Nikki Giovanni speaks at a 2011 Lake Writers Event';

pic[9] = "images/RandomPics/Nancy King as Cow 215x324.jpg";
caption[9] = 'Nancy King performs<br/>for the Lake Players"';

pic[10] = "images/RandomPics/SMAC artshow-kneeling-2011-em 215x160.jpg";
caption[10] = 'Art Show 2011';

pic[11] = "images/RandomPics/Coffee House 215x215.jpg";
caption[11] = 'Presented by<br/>SMAC Special Events';

pic[12] = "images/RandomPics/DSC_5049 215x143.jpg";
caption[12] = 'Lake Players Musicians';

pic[13] = "images/RandomPics/SMAC-Marion-c11-em - small.jpg";
caption[13] = 'Dec 2011<br/>Lake Players<br/>Marion Wetcher';

pic[14] = "images/RandomPics/DSC_5119 215x323.jpg";
caption[14] = 'Lake Players<br/>Connie Canova';

pic[15] = "images/RandomPics/ps-2011 Buddy Kirby - Dandelion 215x301.jpg";
caption[15] = '"Dandelion"<br/>Photo by Buddy Kirby';

pic[16] = "images/RandomPics/ps-2011 Buddy Kirby - Sam 215x172x.jpg";
caption[16] = '"Sam"<br/>Photo by Buddy Kirby';

pic[17] = "images/RandomPics/ps-2011 Devin Meyers - Yellow Tractor 215x160.jpg";
caption[17] = '"Yellow Tractor<br/>Photo by Devin Meyers.jpg';

pic[18] = "images/RandomPics/20111019 - SMAC - Mike, Sara Elizabeth - SM-P.jpg";
caption[18] = 'Oct 2011<br/>Mike Dittrich (SMAC Pres)<br/>with Sara Elizabeth Timmons<br/>Producer of "Lake Effects"';

pic[19] = "images/RandomPics/se-2010 Akemi Takayama 215x.jpg";
caption[19] = '2010 - Akemi Takayama';

pic[20] = "images/RandomPics/se-2010 David Stewart Wiley 215x.jpg";
caption[20] = '2010 - David Stewart Wiley';

pic[21] = "images/RandomPics/se-2010 Mike Havens 215x.jpg";
caption[21] = '2010 - Mike Havens';

pic[22] = "images/RandomPics/se-20110415 Dougherty, Kimmel  04 215x143.jpg";
caption[22] = 'April 15, 2011<br/>Paddy Dougherty<br/>and Tom Kimmel';

pic[23] = "images/RandomPics/SMAC-PR-musicians-playing-web 215x.jpg";
caption[23] = 'The Mike Dittrich Band';

pic[24] = "images/RandomPics/Whitney Blankenship - Peoples Choice - Bootlegger 215x143.jpg";
caption[24] = 'Photo Show 2011<br/>Peoples Choice<br/>"Bootlegger"<br/>Whitney Blankenship';

function showImage(){
	i = Math.floor(Math.random() * (npics));
	while (used[i]){
		 i = Math.floor(Math.random() * (npics));
	}

	document.write('<img src="' + pic[i] + '" width=215>');
	document.write('<p>' + caption[i] + '</p>');
	used[i]=1;
	document.write('<hr/>');
	return ("");
}

function resetRandomPics() {
	for (i=0; npics; i++) {
		used[i]=0;
		return("");
	}

}
