// JavaScript Document
 var util = new function() {
       var selectedLinkNum = 1;

	
       this.openPhotoLink = function(num) {
               var img = document.getElementById("Photo");
               if (img) {
                       img.src = "../images/gallery/full/" + num + ".jpg";
               }

               var img = document.getElementById("imageName");
               if (img) {
                       img.src = "../images/gallery/text/" + num + ".gif";
               }

           selectedLinkNum = num;               
       }

}
