	var pics=new Array(
		"images/directors_web.jpg",
		"images/margaret.jpg",		
		"images/lawrence_web.jpg",
		"images/fredandingrid.jpg",
		"images/wildrose.jpg",
		"images/colleens.jpg",
		"images/stranos.jpg",
		"images/tawny-and-tracie.jpg",
		"images/fundraising1.jpg",
		"images/st_pats.jpg",
		"images/lions_cheque_2.jpg",
		"images/bsphi.jpg"
		);	 
		
	var PicSrc = new Array();
	var PaintNames = new Array(
		"Getting started -- the first Board of Directors: Dr. Daile Hoffmann, Tracie Der, Margaret Litt, Lawrence Spero, Harvey Graham, Fred Geater.  Missing, Dr. Bob Henderson.",
		"Margaret Litt & Lawrence Spero at the Town Hall Meeting",
		"Lawrence Spero at the Town Hall",
		"Fred Geater, President, and Ingrid Versteeg, our first sponsor",
		"Wildrose Nursery, our first business sponsor",
		"Colleen's, another early business sponsor",
		"The Stranos started the process with the 2005 Tour de Gabriolla",
		"Tawny Capon, President of the Gabriola Ambulance Society, which was a strong early supporter of GHCS, with Tracie Der, Secretary, GHCS",
		"The first fund raising committee meeting: Marilyn Greater, Eric Boulton, Randi Lynch, Sandi Miller, Nancy Nevison, & Brenda Fowler", 
		"Sandra Miller, Jose Hammer, Marilyn Greater & Randi Lynch getting ready to meet the Arbutus Building Supplies chalenge.",
		"The Lions, with a large cheque!",
		"Beta Sigma Phi, early GHCS supporters, with Lawrence Spero"
		);
	var PaintSize = new Array(
		'Photo by Bruce Mason',
		'Photo by Bruce Mason',
		'Photo by Bruce Mason',
		'Photo by Bruce Mason',
		'Photo by Bruce Mason',
		'Photo by Bruce Mason',
		'Photo by Bruce Mason',
		'Photo by Bruce Mason',
		'Photo by Bruce Mason',
		'Photo by Bruce Mason',
		'Photo by Bruce Mason',
		'Photo by Bruce Mason'		
		);
function loadPics(){
	for(var i=0; i<pics.length; i++)
		{
		PicSrc[i] = new Image;
		PicSrc[i].src=pics[i];
		}
	};
	
function changeContent(NewPic){
	NewName=PaintNames[NewPic];
	NewSize=PaintSize[NewPic];
	var x=document.getElementById('gallery').rows[2].cells;
	x[1].innerHTML=NewName;
	x[2].innerHTML=NewSize;
	};
function swapPic(n){
	changeContent(n);
	document.images.gallery_1.src = PicSrc[n].src;
	};

