<!-- Begin MENU LINKS AND OPTIONS
// NOTE: If you use a ' add a slash before it like this \'



// USE lowercase FOR ALL OPTIONS ONLY


var showimage 	= "no" 			// SHOW THE SMALL IMAGE ON THE MENU
var imaglink	= "cart.htm"		// SMALL IMAGE PAGE LINK
var linkstop 	= "no" 			// START LINKS AT THE VERY TOP
var date 	= "yes" 		             // SHOW DATE



document.write('<DIV id="menulocation" class="printhide">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="900"><tr><td>');
   if (linkstop == "no") {
document.write('<img src="picts/spacer.gif" width="0" height="0"><br>');
}
document.write(' ');

// START LINKS - EDIT BELOW TO CHANGE MENU ITEMS //



document.write('</td></tr><tr><td nowrap>');
document.write('<a href="pastor.html" class="menu">Pastor\'s Desk</a>');


document.write('</td><td nowrap>');
document.write('<a href="sermons.html" class="menu">Sermons</a>');


document.write('</td><td nowrap>');
document.write('<a href="history.html" class="menu">Our History</a>');


document.write('</td><td nowrap>');
document.write('<a href="ministry.html" class="menu">Ministries</a>');


document.write('</td><td nowrap>');
document.write('<a href="salvation.html" class="menu">Salvation</a>');

document.write('</td><td nowrap>');
document.write('<a href="announce.html" class="menu">Announcements</a>');

document.write('</td><td nowrap>');
document.write('<a href="contact.html" class="menu">Contact Us</a>');

document.write('</td><td nowrap>');
document.write('<a href="location.html" class="menu">Our Location</a>');



// COPY AND PASTE THE NEXT TWO LINES TOO ADD A NEW LINK



document.write('</td><td nowrap>');
document.write('<a href="index.html" class="menu">Home</a>');



// START BOTTOM IMAGE AREA



document.write('</td></tr><tr><td>');

   if (showimage == "yes") {
document.write('<center><br><br>');
document.write('<a href="'+imaglink+'"><img src="picts/sidebar.jpg" border="0"></a><br>');
document.write('</center>');
}
document.write('</td></tr></table></DIV>');




// START DATE CODE



   if (date == "yes") {
document.write('<div id="date-location">');
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<span class=\"date\"><nobr>" + weekday[d.getDay()] + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getDate() + ", ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');
}


//  End -->
