function addLoadEvent(func){
  var oldonload = window.onload;
	if(typeof window.onload != 'function'){
	  window.onload = func;
	} else {
	  window.onload = function(){
		  oldonload();
			func()
		}
	}
}	

function insertAfter(newElement,targetElement) {
  var parent = targetElement.parentNode;
	if (parent.lastChild == targetElement) {
	  parent.appendChild(newElement);
	} else {
	  parent.insertBefore(newElement,targetElement.nextSibling);
	}
}

function preparePlaceholder() {
  if(!document.createElement) return false;
	if(!document.getElementById) return false;
	if(!document.getElementsByTagName ) return false;
  if(!document.getElementById("imagegallery")) return false;
	var placeholder = document.createElement("img");
	placeholder.setAttribute("id","placeholder");
	placeholder.setAttribute("src","images/CIMG1674.jpg");
	placeholder.setAttribute("alt","The Virgin Voyager the following morning");
	//placeholder.setAttribute("width","639");
	//placeholder.setAttribute("height","475");
	var description = document.createElement("h3");
	description.setAttribute("id","description");
	var desctext = document.createTextNode("Image Gallery");
	description.appendChild(desctext);
	var gallery = document.getElementById("imagegallery");
		gallery.className = "narrowlist";
	insertAfter(placeholder,gallery);
	insertAfter(description,gallery);
}

function showPic (whichpic) {
 if (!document.getElementById("placeholder")) preparePlaceholder();
 var source = whichpic.getAttribute("href");
 var placeholder = document.getElementById("placeholder");
 placeholder.setAttribute("src",source);
 if (!document.getElementById("description")) return false;
if (whichpic.getAttribute("title")){
  var text = whichpic.getAttribute("title")
} else {
	var text = "";
}
 var description = document.getElementById("description");
 if(description.firstChild.nodeType == 3){
 description.firstChild.nodeValue = text;
 }
 return false;
}
function prepareGallery(){
  if(!document.getElementById) return false;
	if(!document.getElementsByTagName ) return false;
  if(!document.getElementById("imagegallery")) return false;
  var gallery = document.getElementById( 'imagegallery' );
  var links = gallery.getElementsByTagName( 'a' );
  for( var i=0; i < links.length; i++ ){
    links[i].onclick = function(){
      return showPic(this);
    }
  }
}
addLoadEvent(prepareGallery);
