function SPMenuItem(pPath,pNo,pText,pLink) {
  document.write('<tr><td class=MenuB id="M' + pNo + '"');
  document.write(' onMouseOver="SPRollOver(\'M' + pNo + '\')"'); 
  document.write(' onMouseOut="SPRollOut(\'M' + pNo + '\')">'); 
  document.write('<p class="Menu"><a href="' + pPath + pLink + '">' + pText + '</a></p></td></tr>');
}

function SPMenu(pPath) {
  document.write('<table border=0 cellpadding=0 cellspacing=0 width="100%">');
  document.write('<tr><td height=8></td></tr>');
  SPMenuItem(pPath,'1','Home','index.htm');
	SPMenuItem(pPath, '20','Biography','Biography.htm');
  SPMenuItem(pPath,'2','Books','Books.htm');
  SPMenuItem(pPath,'3','Recordings','Recordings.htm');
  SPMenuItem(pPath,'4','Talk It Out','TalkItOut.htm');
  SPMenuItem(pPath,'5','Song Lyrics','SongLyrics.htm');
  document.write('<tr><td height=8></td></tr>');
  SPMenuItem(pPath,'6','Everyday Bravery','EverydayBravery.htm');
  SPMenuItem(pPath,'7','Magic Penny Interview','MagicPenny.htm');
  SPMenuItem(pPath,'8','The Discovery Center','DiscoveryCenter.htm');
  SPMenuItem(pPath,'9','Concerts','Concerts.htm');
  SPMenuItem(pPath,'10','Keynotes','Keynotes.htm');
  SPMenuItem(pPath,'11','Teachers and Families','TeachersFamilies.htm');
  SPMenuItem(pPath,'12','Circle Dance','CircleDance.htm');
  SPMenuItem(pPath,'13','Universe Story','UniverseStory.htm');
  SPMenuItem(pPath,'14','Journey Camp','JourneyCamp.htm');
  document.write('<tr><td height=8></td></tr>');
  SPMenuItem(pPath,'15','Free Book Downloads','Downloads.htm');
  document.write('<tr><td height=8></td></tr>');
  SPMenuItem(pPath,'16','Interesting Reading','InterestingReading.htm');
  SPMenuItem(pPath,'17','Song Stories','SongStories.htm');
  SPMenuItem(pPath,'18','Reading and Lessons','LessonPlans.htm');
  SPMenuItem(pPath,'19','Links','Links.htm');
  SPMenuItem(pPath,'20','To Contact','Contact.htm');
  document.write('<tr><td height=8></td></tr>');

  document.write('</table>');
}

function SPContact(pIndex) {

  document.write('<a href="About.htm" onmouseover="this.href=SPContactLink(' + pIndex + ')">');

  var x = '';
  var xH = '';
       if (pIndex ==  1) {x = 'EMSarah.gif'; xH = 'EMSarahH.gif'}
  else if (pIndex ==  2) {x = 'EMPirtle22.gif'; xH = 'EMPirtle22H.gif'}
  else if (pIndex ==  3) {x = 'EMJourneyCamp.gif'; xH = 'EMJourneyCampH.gif'};
  document.write('<img border=0 align="top" src="images/' + x + '" align="top" ');
  document.write('onMouseOver="this.src=\'images/' + xH + '\'" ');
  document.write('onMouseOut="this.src=\'images/' + x + '\'">');

  document.write('</a>');

};

function SPContactLink(pIndex) {

  var x = '';
       if (pIndex ==  1) {x = 'mai#cpirtle22#ahotmail#dcom'}
  else if (pIndex ==  2) {x = 'mai#cpirtle22#ahotmail#dcom'}
  else if (pIndex ==  3) {x = 'mai#cjourneycamp#asarahpirtle#dcom'};

  x = x.replace('#c', 'lto:');
  x = x.replace('#a', '@');
  x = x.replace('#d', '.');

  return(x);

}


