// NAVBAR.JS
// This is an automatic header and navigation bar for example web pages.
// It pulls the document title and places it into a default DIV style anywhere on the page
// but is most logically used at the top of the page.
// From within the web page use the following call 
//               <SCRIPT src="../_COMMON/NAVBAR.JS" type=text/javascript></SCRIPT>


document.write('<div id="navbar2"> <ul> ');

document.write('<li><a href="HOME.HTM">Werewolf.ca :: </a></li>');
document.write('<li><a href="SERVICES.HTM">Services</a></li>');
document.write('<li><a href="PROJECTS.HTM">Projects</a></li>');
document.write('<li><a href="CONTACT.HTM">Contact Us</a></li>');
document.write('<li><a href="LINKS/">Links!</a></li>');
document.write('</ul></div></a>');


// This can be called from anywhere on the web page and will drop into place directly 
// on the page where you place it. 

// Written by Werewolf Web Designs for the Web Hack CDROM


// <div class="navcolor"><div id="navbar1"> 
// <ul> 


