<!-- hide this stuff from other browsers
function WriteBottomNavBar()

{		 document.writeln('<td align="center"><a href="../default.htm"><span class="bottomnavbar" onmouseover="BottomNavBar_rollon(this);" onmouseout="BottomNavBar_rolloff(this);">Home</span></a></td>' + 
		'<td align="center"><a href="../Monthly features.html"><span class="bottomnavbar" onmouseover="BottomNavBar_rollon(this);" onmouseout="BottomNavBar_rolloff(this);">Monthly Features</span></a></td>' +
		'<td align="center"><a href="../agencies.html"><span class="bottomnavbar" onmouseover="BottomNavBar_rollon(this);" onmouseout="BottomNavBar_rolloff(this);">Agencies</span></a></td>' +
		'<td align="center"><a href="../contacts.html"><span class="bottomnavbar" onmouseover="BottomNavBar_rollon(this);" onmouseout="BottomNavBar_rolloff(this);">Contacts</span></a></td>' +
		'<td align="center"><a href="../about acorn.html"><span class="bottomnavbar" onmouseover="BottomNavBar_rollon(this);" onmouseout="BottomNavBar_rolloff(this);">About</span></a></td>' +
		'<td align="center"><a href="../sitemap.html"><span class="bottomnavbar" onmouseover="BottomNavBar_rollon(this);" onmouseout="BottomNavBar_rolloff(this);">Site Map</span></a></td>')
 }
	

function BottomNavBar_rollon (obj) 
{
	obj.style.color = '336633';
   //document.writeln("hi");
}

function BottomNavBar_rolloff (obj) 
{
   obj.style.color = 'FFFFCC';
}


// end the hiding comment --> 		 	