// Begin -->

// NOTE: If you use a ' add a slash before it like this \'   -->

document.write('<DIV id="menulocation">');

document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="154"><tr><td>');


document.write('<img src="picts/spacer.gif" width="154" height="1"><BR>');



// ############################################################################## -->
// ######  BEGINNING OF DATE GENERATION AND PRINTING CODE  ###################### -->

// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// ***********************************************

// Get today's current date.
var now = new Date();

// Array list of days.
var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');

// Array list of months.
var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');

// Calculate the number of the current day in the week.
var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();

// Calculate four digit year.
function fourdigits(number)	{
	return (number < 1000) ? number + 1900 : number;
								}

// Join it all together
today =  days[now.getDay()] + " <BR> " +
              months[now.getMonth()] + " " +
               date + ", " +
                (fourdigits(now.getYear())) ;

// Print out the data.
document.write("<FONT COLOR=#FFFFFF><CENTER><B><SMALL> " +today+ "</SMALL></B></CENTER></FONT><BR>");

// ######  END OF DATE GENERATION AND PRINTING CODE  ############################ -->
// ############################################################################## -->



// ############################################################################## -->
// COPY AND PASTE THE NEXT TWO LINES TO ADD A NEW MENU LINK  #################### -->
// ############################################################################## -->


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

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="exterior.html" class="menu">Exterior Photos</a>');


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="interior.html" class="menu">Interior Photos</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="carvings.html" class="menu">Carvings Photos</a>');

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="prices.html" class="menu">Prices</a>');


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="faq.html" class="menu">Frequent Questions</a>');


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


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="directions.html" class="menu">Directions</a>');


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="weather.html" class="menu">Weather</a>');


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


document.write('</td></tr><tr><td>');
document.write('<img src="picts/menu-bottom.gif" width="154" height="65"></a><br>');
document.write('</td></tr></table></DIV>');

//  End -->