function decrypt(s) {
	var result = "";
	for ( var i = 0; i < s.length; i++ ) {
		result += String.fromCharCode(s.charCodeAt(i) - 1);
	}
	return result;
}

function mailLookup(cs) {
    document.location.href = "mailto:" + decrypt(cs);
}

function mailEditorial() {
    mailLookup("fejupsjbmAmboehvqqz/dpn");
}

var contents =
    new Array(
	      "	  <h1><a href=\"http://landguppy.com/\">Home</a></h1>",
	      "	  <h1><a href=\"portfolio.html\">Portfolio</a></h1>",
	      "	  <h1><a href=\"testimonials.html\">Testimonials</a></h1>",
	      "	  <h1>Blogs</h1>",
	      "	  <ul>",
	      "	    <li><a href=\"cookingwithmia\">Cooking with Mia</a>",
	      "	    <li><a href=\"eatreadandbeharried\">Eat, Read &amp; Be Harried</a>",
	      "	    <li><a href=\"letterstofamouspeople\">Letters to Famous People</a>",
	      "	  </ul>",
	      "	  <h1><a href=\"links.html\">Links</a></h1>"
	      );

function writeTOC() {
	for ( line in contents ) {
		document.write( contents[ line ] );
	}
}

var headerLines =
    new Array(
	      "      <h1><a href=\"http://landguppy.com/\" target=\"_self\">Land Guppy Productions</a>",
	      "      <a title=\"Visit WordCount Blogathon Headquarters\" href=\"http://michellerafter.com/the-wordcount-blogathon/\"><img style=\"border: none; clear:none; float:right; margin-right:40px; margin-bottom:10px;\" width=\"80px\" height=\"85px\" src=\"http://landguppy.com/images/Blogathon.png\"></a></h1>",
	      "      <h4><i>Writing the good read.</i></h4>"
	      );

function writeHeader() {
	for ( line in headerLines ) {
		document.write( headerLines[ line ] );
	}
}

