function writeHeader() {
document.write('<div id="wrapper">');
document.write('<div id="head">');
document.write('<div class="title"><img src="/ILASOL/images/logo.gif"><span>The Israel Society for Astrobiology<br>and the Study of the Origin of Life - ILASOL</span></div>');
document.write('</div>');<!--closes head div-->

}
function writeFooter() {
document.write('</div> ');<!--closes content div-->
document.write('<div id="clearfooter"></div>');
document.write('</div>'); <!--closes wrapper div-->
document.write('<div id="footer">');
document.write('<p>Footer&nbsp;  </p>');
document.write('</div>'); <!--closes footer div-->
}

///////////////////////////////Navigation Bar/////////////////////////////
function initHorNav() { 
  var numOfBars= 8;
  var  topHtml ='';
  var  botHtml ='';
  var classHome = 'class="home" '; // '' null if we dont want special home class for 1st item in the hor-nav 

  topHtml += '<div id="menu"><div id="navigate"><ul>';
 

  botHtml += '</ul></div></div>' ;//closes menu and navigate div; written after items in navbar
  botHtml += '<div id="content">' ;
 
 horNav= new NavClass(numOfBars, topHtml, botHtml,0 );  
  setHorBarArray(); 
}



function setHorBarArray()	  
{	
	barHorArray[1] = new BarClass(1,"home", "/ILASOL/", "Home");
	barHorArray[2] = new BarClass(2,"fMeetings", "/ILASOL/fMeetings", "Future Meetings"); 	 
	barHorArray[3] = new BarClass(3, "pMeetings", "/ILASOL/pMeetings", "Past Meetings"); 
	barHorArray[4] = new BarClass(4, "mission", "/ILASOL/mission","Mission Statement");
	barHorArray[5] = new BarClass(5, "venue", "/ILASOL/venue","Venue");
	barHorArray[6] = new BarClass(6, "lectures", "/ILASOL/lectures","Lectures");
	barHorArray[7] = new BarClass(7, "contact", "/ILASOL/contact","Contact Us");
	barHorArray[8] = new BarClass(8, "links", "/ILASOL/links","Links");
}



