/* Navigation Bar for Millbrook Clayworks

Edit the links on this javascript page and they will 
all function throughout the site

ZunZun Design 2009  */

function autoNavBar()
{
var bar='<ul id="nav">';
bar +='  <li id="nav-home"><a href="index.html">Home</a></li>';
bar +='  <li id="nav-home"><a href="studio.html">Studio</a></li>';
bar +='  <li id="nav-bio"><a href="bios.html">Bios</a></li>';
bar +=' <li id="nav-events"><a href="events.html">Events</a></li>';
bar +=' <li id="nav-classes"><a href="classes.html">Classes</a></li>';
bar +=' <li id="nav-gallery"><a href="photo_gallery.html">Gallery</a></li>';
bar +=' <li id="nav-buy"><a href="buy.html">Retail</a></li>';
// bar +=' <li id="nav-soapbox"><a href="#">Soapbox</a></li>';
bar +='</ul>'; 

document.getElementById('navBar').innerHTML = bar;


}

/*  INSTRUCTIONS 
1.  place an element with an id tag id="navBar" where the nave bar should go
2.  add onLoad="autoNavBar();" to the header
3.  place <script src="http://localhost/html/Millbrook/navigationBar.js" language="javascript" type="text/javascript"></script> in the header

*/
