/****************************************************************************************
>> PHOTO GALLERY << 
*****************************************************************************************/
function showPic(whichpic) {
  if (!document.getElementById("bigPicture")) return true;
  var source = whichpic.getAttribute("href");
  var title = whichpic.getAttribute("title");
  var placeholder = document.getElementById("bigPicture");
  placeholder.setAttribute("src",source);
  var tag = document.getElementById("spanTitle");
  var tag2 = document.getElementById("spanName");
  var text = title.split("^");
  tag.innerHTML = text[0];
  tag2.innerHTML = text[1];
 return false;
}

function prepareGallery() {
  if (!document.getElementsByTagName) return false;
  if (!document.getElementById) return false;
  if (!document.getElementById("galleryList")) return false;
  var gallery = document.getElementById("galleryList");
  var links = gallery.getElementsByTagName("a");
  for ( var i=0; i < links.length; i++) {
    links[i].onclick = function() {
      return showPic(this);
	}
    links[i].onkeypress = links[i].onclick;
  }
}

function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}

addLoadEvent(prepareGallery);