﻿/* Gallery Image and Caption Swap*/

function swapPhoto(photoSRC,theCaption) {
	  var theImage = document.getElementById("mainPhoto");
	  var imgFolder = "images/cg/";
	  var imageCaption = document.getElementById("caption");
	 
	  theImage.setAttribute("src", imgFolder+photoSRC);
	  theImage.setAttribute("alt", theCaption);
  		imageCaption.innerHTML = theCaption; 
  		
}

function swapPhoto2(photoSRC,theCaption) {
	  var theImage = document.getElementById("mainPhoto2");
	  var imgFolder = "images/cg/";
	  var imageCaption = document.getElementById("caption2");
	 
	  theImage.setAttribute("src", imgFolder+photoSRC);
	  theImage.setAttribute("alt", theCaption);
  		imageCaption.innerHTML = theCaption; 
  		
}

function swapPhoto3(photoSRC,theCaption) {
	  var theImage = document.getElementById("mainPhoto3");
	  var imgFolder = "images/cg/";
	  var imageCaption = document.getElementById("caption3");
	 
	  theImage.setAttribute("src", imgFolder+photoSRC);
	  theImage.setAttribute("alt", theCaption);
  		imageCaption.innerHTML = theCaption; 
  		
}

function swapPhoto4(photoSRC,theCaption) {
	  var theImage = document.getElementById("mainPhoto4");
	  var imgFolder = "images/cg/";
	  var imageCaption = document.getElementById("caption4");
	 
	  theImage.setAttribute("src", imgFolder+photoSRC);
	  theImage.setAttribute("alt", theCaption);
  		imageCaption.innerHTML = theCaption; 
  		
}
function swapPhoto5(photoSRC,theCaption) {
	  var theImage = document.getElementById("mainPhoto5");
	  var imgFolder = "images/cg/";
	  var imageCaption = document.getElementById("caption5");
	 
	  theImage.setAttribute("src", imgFolder+photoSRC);
	  theImage.setAttribute("alt", theCaption);
  		imageCaption.innerHTML = theCaption; 
  		
}

function swapPhotoG(photoSRC,theCaption) {
	  var theImage = document.getElementById("mainPhotoG");
	  var imgFolder = "images/g/";
	  var imageCaption = document.getElementById("captionG");
	 
	  theImage.setAttribute("src", imgFolder+photoSRC);
	  theImage.setAttribute("alt", theCaption);
  		imageCaption.innerHTML = theCaption; 
  		
}



  
  