/**
	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/DSC_6140 The Odd Couple - Nov 2009 215x.jpg";
caption[0] = 'The Odd Couple - Nov 2009';

pic[1] = "images/RandomPics/DSC_5095 215x143.jpg";
caption[1] = 'Broadway Musical Revue<br/>Photo by Peter Coriasco';

pic[2] = "images/RandomPics/DSC_5119 215x323.jpg";
caption[2] = 'Broadway Musical Revue<br/>Photo by Peter Coriasco';

pic[3] = "images/RandomPics/DSC_5049 215x143.jpg";
caption[3] = 'Broadway Musical Revue<br/>Photo by Peter Coriasco';

pic[4] = "images/RandomPics/se-2010 Aug 15 - Havens-Hickox by Charlie Walker 215x202.jpg";
caption[4] = 'Havens and Hickox<br/>Photo by Charlie Walker';

pic[5] = "images/RandomPics/ps-Ed Wennerstrom - Bugged 215x.jpg";
caption[5] = '"Bugged"<br/>by Ed Wennerstrom';

pic[6] = "images/RandomPics/ps-Paul Glover - When Life Gives You Lemons 215x.jpg";
caption[6] = '"When Life Gives You Lemons"<br/>by Paul Glover';

pic[7] = "images/RandomPics/SMAC-PR-musicians-playing-web 215x.jpg";
caption[7] = 'Some Folk, Jazz, and Blues<br/>Photo by Charlie Walker';

pic[8] = "images/RandomPics/r+l_williams215x170.jpg";
caption[8] = 'Robin and Linda Williams - 2009';

pic[9] = "images/RandomPics/DSC_7669 215x.jpg";
caption[9] = '"Laundry and Bourbon"<br/>Photo by Peter Coriasco';

pic[10] = "images/RandomPics/IMGP2322 A  PEOPLE 215x.jpg";
caption[10] = '2010 Photo Contest Winners<br/>(People Category)<br/>Photo by Bob Luce';

pic[11] = "images/RandomPics/IMGP2317 A SMAC SCOLARSHIP AWARD 215x.jpg";
caption[11] = 'Devin Johnson<br/>2010 Scholarship Winner,<br/>Mike Dittrich (SMAC President)<br/>Photo by Bob Luce';

pic[12] = "images/RandomPics/090522 Carl Boast - Buller's Albatross Landing 215x.jpg";
caption[12] = 'Carl Boast with winning photo<br/>"Buller\'s Albatross Landing"';

pic[13] = "images/RandomPics/ps-2010 Andy Locascio and his award 215x.jpg";
caption[13] = 'Andy Locascio<br/>2010 Photo Contest<br/>Best in Show';

pic[14] = "images/RandomPics/ls-090606-Trio&surfboard.jpg";
caption[14] = 'Lakeside Singers<br/>June 2009<br/>Trio and Surfboard';

pic[15] = "images/RandomPics/af-lg-kaleidoscope2A-215x.jpg";
caption[15] = 'SMAC Affiliate<br/>Lake Glass Group<br/>"Kaleidoscope"';

pic[16] = "images/RandomPics/Devon Meyers - Out To Pasture final 215x.jpg";
caption[16] = '"Out to Pasture"<br/>Photo by Devon Meyers';

pic[17] = "images/RandomPics/ps-2010 Amber Fields - Winner Youth 215x.jpg";
caption[17] = 'Amber Fields<br/>Winner Youth Category<br/>2010 Photo Contest';

pic[18] = "images/RandomPics/af-svsa-Waymores Sep 2009 215x.jpg";
caption[18] = 'SMAC Affiliate<br/>Southwest VA Songwriters<br/>Waymores Concert - Sep 2009';

pic[19] = "images/RandomPics/2009 SMAC Sponsored Good Neighbors.jpg";
caption[19] = '2009 SMAC Sponsored Good Neighbors Program';

pic[20] = "images/RandomPics/ps-Mary Ellen Philpott - Autumn Joy 215.jpg";
caption[20] = '"Autumn Joy"<br/>by Mary Ellen Philpott';
pic[21] = "images/RandomPics/SMAC-David&Leah-web 215x.jpg";
caption[21] = 'David and Leah Wiley - 2009';
pic[22] = "images/RandomPics/DSC_3774 Joyce and Mike Dittrich, Mille 215x.jpg";
caption[22] = 'Joyce and Mike Dittrich<br/>in "Millie"';
pic[23] = "images/RandomPics/DSC_3829-Marion Wetcher and Clif Collins, Millie 215x.jpg";
caption[23] = 'Marion Wetcher and<br/>Clif Collins in "Millie"';
pic[24] = "images/RandomPics/ps-Fabers & Reap May 2009 215x.jpg";
caption[24] = 'Trudy Faber, Judy Reap (SMAC Pres), Erich Faber<br/>Photo Show May 2009<br/>Photo by Ed Wennerstrom';

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("");
	}

}