<!--
/* Several pages rely on this script - Do not change variables here */
// State variables to keep track of initial current object in the ID tag
var currentIMG = "SS1";

		
// Function to switch new objects to old
function makeIMGCurrent(newIMG, newCaption) {
if (currentIMG != newIMG) {

// Adjust the styles for the new and old objects
var thisIMG = document.getElementById(newIMG);
thisIMG.className = "show";
var oldIMG = document.getElementById(currentIMG);
oldIMG.className = "hide";
		
// Make the new tab the current tab
currentIMG = newIMG;

// Switch out the picture caption
var SwitchCaption = document.getElementById("PictureCaption");
SwitchCaption.innerHTML = newCaption;

     }

}
//-->
