/*
Generate footer:
  copyright
  home link
  email text and link
  last updated
*/

var myname="billcorixcellent";
var mydomain="gmail"
var mymessage="email us";


//begin function genFooter()
function genFooter(copy, update, isHome) {
hbegin = "<a href='mailto:";
hend = "'>";
aend = "</a>";

	document.write("<div class='bar'></div>");
	document.write("<center>");
	// not for pages without photos
	if (copy.length > 0)
  		document.write("<span class='smFont'>All photos &copy;"+copy+". Please do not use without permission.</span><br>");
	// Not for homepage  
  	document.write("<a href='../index.htm'>Home</a><br>");
	document.write(hbegin+myname+"@"+mydomain+".com"+hend+mymessage+aend+"<br>");
	document.write("<a href='http://twitter.com/billandcori'><img src='../images/twitter1616.jpg' width='16' height='16' alt='' border='0'> Follow us on Twitter</a><br>");
	document.write("<span class='smFont'>Last updated: " + update + "</span>");
	document.write("<br><img src='../images/eightyears.jpg' width='148' height='62' alt='Celebrating 8 years on the World Wide Web' border='0'><br>");
	document.write("</center>");
} //end function genFooter()


function genMainMenu() {
	document.write("<a class='menu rbuf' href='../index.htm'>Explore:</a><a class='menu rbuf' href='../activity/ancient_index.htm'>Ancient World</a><a class='menu rbuf' href='../activity/biking_index.htm'>Biking</a><a class='menu rbuf' href='../activity/camping_index.htm'>Camping</a><a class='menu rbuf' href='../activity/climbing_index.htm'>Climbing</a><a class='menu rbuf' href='../activity/hiking_index.htm'>Hiking</a><a class='menu rbuf' href='../activity/kayaking_index.htm'>Kayaking</a><a class='menu rbuf' href='../activity/places_index.htm'>Places</a><a class='menu rbuf' href='../activity/road_index.htm'>Road Trips</a>");
}