// 4/5/2003 functions for writing the navigation and footer elements of each page

function createnav(titletext) {
	document.write("<META HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=iso-8859-1'>");
	document.write("<META NAME='description' content='www.capayvalley.com is a community website focused on providing information to the residents of the Capay Valley in Northern California.'>");
	document.write("<META NAME='keywords' content='Capay Valley, Capay, Brooks, Guinda, Rumsey, Esparto, Yolo County, California, Almonds, Capay Valley Almond Festival, Capay Valley history, Capay Valley cemeteries, Capay Valley cemetery, Black Homesteads'>");
	document.write("<LINK REL='stylesheet' type='text/css' HREF='/includes/capayvalley.css'>");
	document.write("<TITLE>" + titletext + "</TITLE>");
	document.write("</HEAD>");
	document.write("<BODY BGCOLOR='#FFFFFF'>");
	document.write("<!-- top navigation -->");
	document.write("<table border='0' cellpadding='0' cellspacing='0'>");
	document.write("<tr>");
	document.write("<td rowspan='3' valign='middle'><a href='/index.htm'><img src='/images/treebannersmall.jpg' width='200' height='83' alt='CapayValley.com Home Page' border='0'></a></td>");
	document.write("<td nowrap valign='bottom'>");
	document.write("<a href='/business.cfm' class='greenSerifsmall'>Business Links</a>");
	document.write("&nbsp;|&nbsp;");
	document.write("<a href='/groups.htm' class='greenSerifsmall'>Groups, Clubs, & Organizations</a>");
	document.write("&nbsp;|&nbsp;");
	document.write("<a href='/links.htm' class='greenSerifsmall'>Capay Valley Links</a>");
	document.write("</td>");
	document.write("</tr>");
	document.write("<tr>");
	document.write("<td nowrap valign='middle'>");
	document.write("<a href='/calendar/' class='greenSerifsmall'>Community Calendar</a>");	
	document.write("&nbsp;|&nbsp;");
	document.write("<a href='/classifieds.cfm' class='greenSerifsmall'>Classifieds</a>");
	document.write("&nbsp;|&nbsp;");
	document.write("<a href='/commresources.htm' class='greenSerifsmall'>Community Resources & Churches</a>");
	document.write("</td>");
	document.write("</tr>");
	document.write("<tr>");
	document.write("<td nowrap valign='top'>");
	document.write("<a href='/photos.htm' class='greenSerifsmall'>Photos</a>");
	document.write("&nbsp;|&nbsp;");
	document.write("<a href='/events.htm' class='greenSerifsmall'>News</a>");
	document.write("&nbsp;|&nbsp;");
	document.write("<a href='/aboutus.cfm' class='greenSerifsmall'>About This Site</a>");
	document.write("</td>");
	document.write("</tr>");
	document.write("</table>");
	document.write("<!-- end top navigation -->");
}

function createfooter(modifieddate) {
	document.write("<!-- begin footer -->");
	document.write("<div class='footer'>");
	document.write("<br>");
	document.write("<br>");
	document.write("<hr>");
	document.write("www.capayvalley.com © copyright 2001-2011 <a href='/contact.cfm' class='footer'>Nancy Capitanio</a><br>");
	document.write("Last Modified:&nbsp;" + modifieddate + "<br>");
	document.write("</div>");
	document.write("</body>");
	document.write("</html>");
}
