	var pics=new Array(
		"images/quilt.jpg",
		"images/bruce_quilt_draw.jpg",
		"images/winner.jpg",
		"images/garage-sale-3.jpg",
		"images/garage-sale-4.jpg",
		"images/garage-sale-5.jpg",
		"images/garage-sale-6.jpg",
		"images/nevison-2008.jpg",
		"images/fitness-1.jpg",
		"images/2009-raffle-draw-web.jpg",
		"images/2009-raffle-0.jpg",
		"images/2009-raffle-1.jpg",
		"images/2009-raffle-2.jpg"
		);		
	var PicSrc = new Array();
	var PaintNames = new Array(
		"The Gabriola Quilters donated the quilt for the quilt draw",
		"The Gabriola Quilters",
		"Rachel Hamilton draws the ticket for Fulvio Limongelli -- And the winner is Eimear Johnson, Duncan",
		"Garage sale - getting ready",
		"Garage sale - getting ready",
		"Garage sale - April 26,2008",
		"Garage sale - April 26, 2008",
		"Nancey Nevison - Mums for Mom, 2008",
		"Fitness chalenge - practice",
		"2009 Rafle - Winning ticket drawn by Samantha Montgomery-Swan ",
		"2009 Rafle - Plate by Jill Adamson",
		"2009 Rafle - Bowl by Dirk Huysman",
		"2009 Rafle - Plate by Tami Hudgeon"
		);
	var PaintSize = new Array(
		'Photo by Bruce Mason',
		'Photo by Bruce Mason',
		'Photo by Harvey Graham',
		'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 Marilyn Geater',
		'Photo by Marilyn Geater',
		'Photo by Marilyn Geater',
		'Photo by Marilyn Geater'
		);
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;
	};

