function level(level)
{
var today = new Date();

document.write('<ul>' +

			'<li><a href="' + level + '" target="_self">Home</a></li>' +

			'<li><a href="' + level + 'who_we_are/" target="_self">Who We Are</a></li>' +

			'<li><a href="' + level + 'archive/" target="_self">Archive</a></li>' +

			'<li><a href="' + level + 'columnists/" target="_self">Columnists</a></li>' +

			'<li><a href="' + our_blog + '" target="_self">Blog</a></li>' +

			'<li><a href="' + level + 'subscribe/" target="_self">Subscribe</a></li>' +

			'<li><a href="' + level + 'donate/" target="_self">Donate</a></li>' +

			'<li><a href="' + level + 'links/" target="_self">Links</a></li>' +

			'<li><a href="' + level + 'contact_us/" target="_self">Contact Us</a></li>' +

		'</ul>' +

		'<p style="margin-left: 5px;">' +

		'<a href="' + level + 'terms_of_use.php">Terms of Use</a> | ' + 

		'<a href="' + level + 'privacy_policy.php">Privacy Policy</a> | ' +

		'Copyright © 2009 - ' + today.getFullYear() + ' <a href="' + level + '">www.inconvenienthistory.com</a></p>' +

		'<p style="margin-left: 5px;">' +

		'<a href="http://validator.w3.org/check?uri=referer" target="_blank">This page is valid XHTML 1.0</a></p>');


}