﻿


var strHoverOverColor = "#006BBD";
var strHoverOutColor = "#444444";

function ProjectImageOut(theImage) {
  var myID = theImage.id.substring(3);
  document.getElementById("img" + myID).className = "GalleyPageThumbnail";
  document.getElementById("txt" + myID).className = "GalleryLink";
}

function ProjectImageOver(theImage) {
  var myID = theImage.id.substring(3);
  document.getElementById("img" + myID).className = "GalleyPageThumbnailHover";
  document.getElementById("txt" + myID).className = "GalleryLinkHover";
}

function HoverImageLinkOut(theImage) {
  theImage.src = theImage.id;
}

function HoverImageLinkOver(theImage) {
  var imgURL = theImage.src;
  theImage.id = imgURL;
  theImage.src = imgURL.substring(0, imgURL.length - 4) + "_hl" + imgURL.substring(imgURL.length - 4, imgURL.length);
}



