// Javascript gallery. largePic is var large image id to reference and swap. imageFile is next picture to swap in. description is caption id, captionText is caption text to change

function loadGallery(largePic,imageFile,capdescript,captionText)
	{
		document.getElementById(largePic).src = imageFile;
		document.getElementById(capdescript).innerHTML = captionText;
	}

