if (document.title.search(/News Archives/) != -1)
{
	if (document.title.search(/News Archives 2008/) != -1)
	{
		document.write('<p><a href="news.html" class="news">[Back to Current News]</a></p>');

		document.write('<p>');
		document.write('<a href="news2007.html" class="news">[News Archives 2007]<br />');
		document.write('<a href="news2006.html" class="news">[News Archives 2006]');
		document.write('</p>');
	} // end if



	if (document.title.search(/News Archives 2007/) != -1)
	{
		document.write('<p><a href="news.html" class="news">[Back to Current News]</a></p>');

		document.write('<p>');
		document.write('<a href="news2008.html" class="news">[News Archives 2008]<br />');
		document.write('<a href="news2006.html" class="news">[News Archives 2006]');
		document.write('</p>');
	} // end if



	if (document.title.search(/News Archives 2006/) != -1)
	{
		document.write('<p><a href="news.html" class="news">[Back to Current News]</a></p>');

		document.write('<p>');
		document.write('<a href="news2008.html" class="news">[News Archives 2008]<br />');
		document.write('<a href="news2007.html" class="news">[News Archives 2007]');
		document.write('</p>');
	} // end if
} // end if

else
{
	if (document.title.search(/News/) != -1)
	{
		document.write('<p>');
		document.write('<a href="news2008.html" class="news">[News Archives 2008]<br />');
		document.write('<a href="news2007.html" class="news">[News Archives 2007]<br />');
		document.write('<a href="news2006.html" class="news">[News Archives 2006]');
		document.write('</p>');
	} // end if
} // end else