function ch_navMenus(pageName)
{
    var text="";

    var pName = new Array(6);
    var lName = new Array(6);
    var currentLoc = new Array(6);
    var menuItem = 6;

    pName[0] = "Home";
    pName[1] = "Nursery";
    pName[2] = "Parents' Information";
    pName[3] = "Sunday School";
    pName[4] = "Awana";
    pName[5] = "Resources";
    lName[0] = "index.htm";
    lName[1] = "cmNursery.html";
    lName[2] = "cmInfo.html";
    lName[3] = "cmPrograms.html";
    lName[4] = "cmAwana.html";
    lName[5] = "cmResources.html";
 
    if( pageName != "" ) {
      pageName == "mainPage"?currentLoc[0] = "active":"";
      pageName == "nurseryPage"?currentLoc[1] = "active":"";
      pageName == "infoPage"?currentLoc[2] = "active":"";
      pageName == "programsPage"?currentLoc[3] = "active":"";
      pageName == "awanaPage"?currentLoc[4] = "active":"";
      pageName == "resourcesPage"?currentLoc[5] = "active":"";
   }
   else {
     for( i = 0; i < 5; i++ )
       currentLoc[i] = "";
   }
   text += '<div id="menu">';      
   text += '<ul id="nav">';
   for( i = 0; i < menuItem; i++ ) {
     if ( i == 2 || i == 3 )
       text += '<li id="'+pName[i]+'" class="'+currentLoc[i]+'"><a href="'+lName[i]+'">'+pName[i]+'</a></li>';
     else
       text += '<li id="'+pName[i]+'" class="'+currentLoc[i]+'"><a href="'+lName[i]+'"><br>'+pName[i]+'</a></li>';
   }
   text += '</ul></div>';
   document.write(text);

} 

function ch_headerLink()
{
  var text = "";
  
  text += '<div id="headerLink">';
  text += '<a href="http://www.ccic.org/mv_ch/index.htm" title="Chinese Ministry" #="http://www.ccic.org/mv_ch/index.htm">Chinese Ministry</a>&nbsp|';
  text += '<a href="http://www.ccic.org/mv/index.htm" title="English Ministry" #="http://www.ccic.org/mv/index.htm">English Ministry</a>&nbsp|';
  text += '<a href="http://www.ccic.org/mvyouth/" #="http://www.ccic.org/mvyouth/">Youth Ministry</a>';
  text += '</div>';
  document.write(text);
}

function ch_footer(pageName)
{
  var text = "";
  var pName = new Array(6);
  var lName = new Array(6);
  var currentLoc = new Array(6);
  var menuItem = 6;

  pName[0] = "Home";
  pName[1] = "Nursery";
  pName[2] = "Parents' Infomation";
  pName[3] = "Sunday School";
  pName[4] = "Awana";
  pName[5] = "Resources";

  lName[0] = "index.htm";
  lName[1] = "cmNursery.html";
  lName[2] = "cmInfo.html";
  lName[3] = "cmPrograms.html";
  lName[4] = "cmAwana.html";
  lName[5] = "cmResources.html";
 
  if( pageName != "" ) {
    pageName == "mainPage"?currentLoc[0] = "active":"";
    pageName == "nurseryPage"?currentLoc[1] = "active":"";
    pageName == "infoPage"?currentLoc[2] = "active":"";
    pageName == "programsPage"?currentLoc[3] = "active":"";
    pageName == "awanaPage"?currentLoc[4] = "active":"";
    pageName == "resourcesPage"?currentLoc[5] = "active":"";
  }
  else {
    for( i = 0; i < menuItem; i++ )
      currentLoc[i] = "";
  }      

  text += '<div id="footerLink">';
  for ( i = 0; i < menuItem; i++ ) {
    text += '<a href="'+lName[i]+'" title="'+pName[i]+'" class="'+currentLoc[i]+'" class="footerStyle" #="'+lName[i]+'">'+pName[i]+'</a>&nbsp;|';
  }
/*
  text += '<a href="childrenMinistry.html" title="home" class="active" class="footerStyle" #="childrenMinistry.html">Home</a>&nbsp;|';
  text += '<a href="cmNursery.html" title="nursery" class="footerStyle" #="cmNursery.html">Nursery</a>&nbsp;|';
  text += '<a href="cmPrograms.html" title="programs" class="footerStyle" #="cmPrograms.html">Sunday School</a>&nbsp;|';
  text += '<a href="cmResources.html" title="resources" class="footerStyle" #="cmResources.html">Resources</a>';
 */
  text += '</div>'; 
  text += '<div id="footer">';
  text += '<address> © Copyright 2005 | The Children Ministry of Chinese Church in Christ of Mountain View</address>';
  text += '</div>';
  document.write(text);

}