﻿// JScript COMMON File


// this function swaps text for Galleries on the 
// HuntingtonLibrary.aspx template
function swapText(what) {
document.getElementById('GalleryText').innerHTML = what;
}
function swapImage(what){
document.GalleryImage.src = what;
document.getElementById("GalleryContent").style.display="block";
}
function hideGalleryContent() {
document.getElementById("GalleryContent").style.display="none";
}