function updateContent(section) { 

   if ( section != "WHAT"  ) {
     this.document.getElementById('WHAT').style.display='none';
//     this.document.getElementById('WHAT_MENU').class='menublob';
   }
   if ( section != "WHO"   ) this.document.getElementById('WHO').style.display='none';
   if ( section != "WHERE" ) this.document.getElementById('WHERE').style.display='none';
   if ( section != "WHEN"  ) this.document.getElementById('WHEN').style.display='none';

   this.document.getElementById(section).style.display='inline';
//   this.document.getElementById(section+"_MENU").class='menublobSELECTED';
}

function initContent() {
  updateContent("WHAT");
  this.document.getElementById('WHERE_HEADER').style.display='none';
  this.document.getElementById('submenu').style.display='inline';
}

window.onload=initContent;

