
/* Function that unhides the the slide show when javascript is enabled */
function slideShow () {
    document.getElementById("imageStrip").style.display = "block";
    document.getElementById("imageBox").style.backgroundImage = "url()";
}

/*********************************
Function to open a link in a new window
**********************************/
function openInNewWindow(element){
	var newWindow = window.open(element.href);
	newWindow.focus();
}

function replaceMissingImages(){  
  for (var i=0; i<document.images.length; i++){
    img = new Image();
    img.src = document.images[i].src;
    if (img.height == 0)
      document.images[i].src = 'default.jpg';
  }
}


