function loadImage (path) {
  document.getElementById("bigImage").src=path;    
}

function show () {
  if (document.getElementById){
    if (document.getElementById("extra").style.display=='none'){ 
      document.getElementById("extra").style.display='block';
    }else{
      document.getElementById("extra").style.display='none';
    }
  }  
}

function showMotto () {
  if (document.getElementById){
    if (document.getElementById("motto").style.display=='none'){ 
      document.getElementById("motto").style.display='block';
    }else{
      document.getElementById("motto").style.display='none';
    }
  }  
}
