<!-- Begin CSS Vertical Menu - menu ver 3.0 2007

// NOTE: If you use a ' add a slash before it like this \'

document.write('<table cellpadding="0" cellspacing="0" border="0" class="menutable"><tr><td class="printhide">');

document.write('<ul id="menunav">');

// The variable "root" is to make the menu.js 'portable' at different directory levels, so here's how it works:
// In order to use menu.js in HTML files in located at different directory levels you need to place a copy of menu.js in 
// EVERY sub-directory.
// So when menu changes are made at the top level and you want to all menus at all sub-levels the same you have to ...
// FIRST: Make the change at the root-level menu.
// SECOND: Copy menu.js into each sub-directory writing over the old menu.
// THIRD: Change the variable "root" to reflect the relative path to the root level.
// For example to use menu.js in the /newsletters subdirectory then 'root' should look like this: 
// var root = "../"

// menu.js at top-level (root) of website should have one 'dot' and one slash to 
// represent the current directory.  Two 'dots' and one slash means "next level up" from 
// the current directory:
var root = "./"

// START MENU LINKS - EDIT BELOW THIS AREA

// Column 1
document.write('<li style="width: 120px;"><a href="' + root + 'index.html">Home</a></li>');

// Column 1
document.write('  <li style="width: 120px;"><a href="' + root + 'about_us.htm">About Us</a>'); 
document.write('    <ul>');
document.write('      <li><a href="' + root + 'about_us.htm">About Us</a>');
document.write('      <li><a href="' + root + 'what_we_believe.htm">What We Believe</a>');
document.write('      <li><a href="' + root + 'ss_commitment.htm">Our Teacher Commitment</a>');
document.write('      <li><a href="' + root + 'newsletters.htm">Newsletter Archive</a>');
document.write('      <li><a href="' + root + 'join_us.htm">Join us!</a>');
document.write('    </ul>');
document.write('  </li>');

// Column 2
document.write('<li style="width: 120px;"><a href="' + root + 'mp3_2010.htm">Resources</a>');
document.write('    <ul>');
document.write('      <li><a href="' + root + 'mp3_2010.htm">MP3 Messages</a>');
document.write('      <li><a href="' + root + 'man_church.htm">Man Church</a>');
//document.write('      <li><a href="' + root + 'resources/NurserySchedule.xls">Nursery Schedule (.xls)</a>');

document.write('      <li><a href="' + root + './secure/REBC%20-%20Church%20Directory%20Phone%20List.pdf" target="_blank">Membership List (pdf)</a>');
document.write('      <li><a href="' + root + './secure/REBC%20-%20Church%20Directory%20Birthday%20List.pdf" target="_blank">Birthday List (pdf)</a>');
//document.write('      <li><a href="' + root + './secure/2010_Childrens_Church.pdf" target="_blank">Children\'s Church (pdf) </a>');
document.write('      <li><a href="' + root + './secure/Nursery_Schedule.pdf" target="_blank">Nursery Schedule (pdf)</a>');
document.write('      <li><a href="' + root + 'resources.htm">Resources For Growth</a>');
document.write('    </ul>');
document.write('  </li>');

// Column 4
document.write('<li style="width: 120px;"><a href="' + root + 'directions.htm">Directions</a>');
document.write('    <ul>');
document.write('      <li><a href="' + root + 'directions.htm">Directions</a>');
document.write('      <li><a href="' + root + 'contact.htm">Contact River\s Edge</a>');
//document.write('      <li><a href="' + root + 'God_Questions.htm">Ask Your \'God Question\'</a>');
document.write('      <li><a href="' + root + 'prayer_requests.htm">Submit a Prayer Request</a>');
document.write('    </ul>');
document.write('  </li>');

// Column 5
document.write('  <li style="width: 120px;"><a href="' + root + 'index.html">Missions</a>'); 
document.write('    <ul>');
document.write('      <li><a href="' + root + '../video/Guatemala_2007.ppt" target="_blank">Guatemala Mission Trip 2007  </a>');
document.write('      <li><a href="' + root + 'guatemala_2008.html" target="_blank">Guatemala Mission Trip 2008  </a>');
document.write('    </ul>');
document.write('  </li>');

// Column 6
document.write('  <li style="width: 120px;"><a href="' + root + 'links.htm">Other</a>'); 
document.write('    <ul>');
document.write('      <li><a href="' + root + 'links.htm">Web Links</a>');
document.write('      <li><a href="http://www.gadoodles.com/REBC/" target="_blank">River\’s Edge Worship Set</a>');
document.write('      <li><a href="' + root + 'site_map.htm">Site Map</a>');
document.write('    </ul>');
document.write('  </li>');

document.write('<li style="width: 120px;"><a href="' + root + 'calendar.htm">Event Calendar</a></li>');
// Column 7
// document.write('  <li style="width: 120px;"><a href="' + root + 'index.html">Downloads</a>'); 
// document.write('    <ul>');
// document.write('      <li><a href="' + root + 'childrens_church/20090419.pdf" target="_blank">Children\'s Church 04/19</a>');
// document.write('      <li><a href="' + root + 'childrens_church/20090426.pdf" target="_blank">Children\'s Church 04/26</a>');
// document.write('      <li><a href="' + root + 'childrens_church/20090503.pdf" target="_blank">Children\'s Church 05/03</a>');
// document.write('      <li><a href="' + root + 'childrens_church/20090510.pdf" target="_blank">Children\'s Church 05/10</a>');
// document.write('      <li><a href="' + root + 'childrens_church/20090517.pdf" target="_blank">Children\'s Church 05/17</a>');
// document.write('      <li><a href="' + root + 'childrens_church/20090524.pdf" target="_blank">Children\'s Church 05/24</a>');
// document.write('      <li><a href="' + root + 'childrens_church/20090531.pdf" target="_blank">Children\'s Church 05/31</a>');
// document.write('    </ul>');
// document.write('  </li>');
// END LINKS //

document.write('</ul>');

document.write('</td></tr></table>');

// END -->