<!--
document.write("<div style=\"line-height: 6px; font-size: 6px;\"><br></div><ul>");

if (pageName == "main")
	document.write("<li><b>Home</b></li>");
else
	document.write("<li><a href=\"index.html\">Home</a></li>");
	
if (pageName == "books")
	document.write("<li><b>Books</b></li>");
else
	document.write("<li><a href=\"books.html\">Books</a></li>");
	
document.write("<div style=\"line-height: 10px; font-size: 10px;\">");
if (pageName == "freebooks")
	document.write("<b>free books</b>");
else
	document.write("<a href=\"freebooks.html\">free books</a>");
document.write("</div></li>");
	
if (pageName == "poems")
	document.write("<li><b>Poems</b>");
else
	document.write("<li><a href=\"poems.html\">Poems</a>");

document.write("<div style=\"line-height: 10px; font-size: 10px;\">");
if (pageName == "pow")
	document.write("<b>found poems</b>");
else
	document.write("<a href=\"pow.html\">found poems</a>");
document.write("</div></li>");
	
if (pageName == "nonfiction") {
	document.write("<div style=\"font-size: 14px;\">");
	document.write("<li><b>Nonfiction</b></li>");
	document.write("</div>");
}
else
	document.write("<li><a href=\"nonfiction.html\">Nonfiction</a></li>");
	
document.write("<li><a href=\"http://snyppet.blogspot.com\" target=\"a-blog\">Blog</a></li>");

if (pageName == "about")
	document.write("<li><b>About</b></li>");
else
	document.write("<li><a href=\"about.html\">About</a></li>");
	
if (pageName == "news")
	document.write("<li><b>News</b></li>");
else
	document.write("<li><a href=\"news.html\">News</a></li>");
	
if (pageName == "contact")
	document.write("<li><b>Contact</b></li>");
else
	document.write("<li><a href=\"contact.html\">Contact</a></li>");

if (pageName == "links")
	document.write("<li><b>Links</b></li>");
else
	document.write("<li><a href=\"links.html\">Links</a></li>");

document.write("</ul>");

document.write("<div style=\"line-height: 6px; font-size: 6px;\"><br></div><ul>");


//-->