// JavaScript Document
  var arMenuNotes = new Array();
  arMenuNotes[0] = "The Outer Harbour Sailing Federation";
  arMenuNotes[1] = "Read about the OHSF";
  arMenuNotes[2] = "History of the OHSF and member clubs";
  arMenuNotes[3] = "Our member clubs, and their specific offerings.";
  arMenuNotes[4] = "News about happenings in the Outer Harbour";
  arMenuNotes[5] = "Developments in the waterfront area";
  arMenuNotes[6] = "Calendar of Events";
  arMenuNotes[7] = "Photo Gallery";
  arMenuNotes[8] = "Basics of Boating and Rules of the Road";
  arMenuNotes[9] = "Choosing a Club that suits your needs";
  arMenuNotes[10] = "A few basic safety rules";
  arMenuNotes[11] = "Member Clubs, Sailing & Yachting Associations, Resources";
  arMenuNotes[12] = "Contacting the Outer Harbour Sailing Federation (OHSF)";
  arMenuNotes[13] = "From the desk of the OHSF Commodore";

  function ClearInfo(){
    var objNotes = window.document.getElementById('menunotes');
	objNotes.innerHTML = "";
  }

  function GetInfo(item){
    var objNotes = window.document.getElementById('menunotes');
	var strNote = "<font class='notes'>"+arMenuNotes[item]+"</font>";
	objNotes.innerHTML = strNote;
  }
  
  function WriteEmail(){
  	var name = "info";
  	var isp = "ohsf.ca";
  	var mail = '<a href="mailto:'+name+'@'+isp+'">'+name+'@'+isp+'</a>';
  	document.write(mail);
  }