﻿// JScript File to write out the horizontal menu that shows on each page
function writeMenu() {
    
   writeToStream('<a href=\"/index.html\">Fishwrench.com</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
   writeToStream('<a href=\"/FWFeatures.html\">FW FEATURES </a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
   writeToStream('<a href=\"/tactics\">FW FORUM </a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
   writeToStream('<a href=\"http://shop.fishwrench.com\">SHOP </a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
   writeToStream('<a href=\"/FWProStaff.html\">PRO STAFF </a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
   writeToStream('<a href=\"/FWHotLinks.html\">HOT LINKS </a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
   writeToStream('<a href=\"/FWContactUs.html\">CONTACT US</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
   writeToStream('<a href="/FWAbout.html">ABOUT FW </a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>');
}
function writeToStream(text) {
    document.write(text);
}
