// JavaScript Document
function rightSideNav()
{

document.writeln('<ul>');
document.writeln('<li><a href="index.html" title="Home"><span>Home</span></a></li>');
document.writeln('<li><a href="info.html" title="General info"><span> &nbsp; | &nbsp; General Information </span></a></li>');
document.writeln('<li><a href="features.html" title="Features"><span> &nbsp; | &nbsp; Features</span></a></li>');
document.writeln('<li><a href="exhibitors.html" title="Exhibitors"><span> &nbsp; | &nbsp; Exhibitors</span></a></li>');
document.writeln('<li><a href="accommodations.html" title="Accomodations"><span> &nbsp; | &nbsp; Accommodations</span></a></li>');
document.writeln('<li><a href="international.html" title="International"><span> &nbsp; | &nbsp; International Guests </span></a></li>');
document.writeln('<li><a href="canadian-ag-market.html" title="The Canadian Ag Market"><span> &nbsp; | &nbsp; The Canadian Ag Market</span></a></li>');
document.writeln('<li><a href="faq.html" title="FAQ"><span> &nbsp; | &nbsp; FAQ </span></a></li>');
document.writeln('<li><a href="contact.html" title="Contact"><span> &nbsp; | &nbsp; Contact Us </span></a></li>');
document.writeln('</ul>');

document.writeln('<ul>');
document.writeln('<li> Copyright 2010 Canada&rsquo;s Outdoor Farm Show &nbsp; | &nbsp; Site by <a href="http://www.gjacommunications.com" target="_blank">GJA communications</a> &nbsp; | &nbsp; <a href="privacy.html">Privacy Policy</a></li>');
document.writeln('</ul>');

}
rightSideNav();