/*-- gallery.js for elec-tech --*/


function swapPhoto(photoSRC,theCaption) {
	var displayedCaption = document.getElementById("Caption");
	displayedCaption.firstChild.nodeValue = theCaption;

	document.images.imgPhoto.src = "images/gallery/" + photoSRC;

}

function swapPhoto2(photoSRC,theCaption) {
	var displayedCaption = document.getElementById("Caption2");
	displayedCaption.firstChild.nodeValue = theCaption;

	document.images.imgPhoto2.src = "images/gallery/" + photoSRC;

}