	var pics=new Array(
		"images/clinic.jpg",
		"images/eric.jpg",
		"images/krog2.jpg",		
		"images/clinic_opening_diana.jpg",
		"images/clinic_opening_tawnie.jpg",
		"images/cutting_the_gauze.jpg",
		"images/opening_cutting2.jpg",
		"images/cutting_cake.jpg"
		);
	var PicSrc = new Array();
	var PaintNames = new Array(
		"The Clinic",
		"Eric Boulton, our MC",
		"Leonard Krog, our MLA",
		"Diana Moher, Director, GHCS",
		"Tawny Capon, President, Gabriola Ambulance Society",
		"Drs. Hoffman and Bosman cutting the gauze",
		"Dr. Hoffman",
		"Fred Geater cutting the cake"
		);
	var PaintSize = new Array(
		'Photo by Harvey Graham',
		'Photo by Don Butt',
		'Photo by Don Butt',
		'Photo by Don Butt',
		'Photo by Don Butt',
		'Photo by Don Butt',
		'Photo by Don Butt',
		'Photo by Don Butt'
		);
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;
	};

