horizontal nav bar:

if you have to have a horizonal nav bar, look at the CSS code in this document:

<style type="text/css">
<!--
#hornavbar {
position: absolute;
width: 645px;
left: 29px;
top: 77px;
}

#hornavbar ul {
list-style-type: none; <!-- this turns off the bullets -->
}
.bar a { <!-- creates a reuseable class that defines the size and color of the buttons -->

height: 15px;
width:100px;
background-color:#FF9933;
padding: 4px 12px;

}

#hornavbar ul li {
display: inline; <!-- by defining the ul li tags as "display:inline;" here, it displays horizontally -->
}


#hornavbar ul li a {
text-decoration:none; <!-- turns off underlining of links -->
}


.bar a:hover{ <!-- sets change of color on rollover -->

background-color:#00FFFF;
color:#000000;

}

-->
</style>


}