stage two:

add comments to divs tags <!--end maincontent -->
convert list tags to bars:

#navbar li a {
color: #FFFFFF;
background-color: #999999;
display: block; /* necessary to make attributes of heigth and width apply */
height: 20px;
width: 120px;
border-left: solid 20px #666666; /* makes darker square at left of each nav item */
padding-left: 5px;
font-weight: bold;
text-decoration: none; /* turns off automatic underlining of links */
border-bottom-width: solid 1px #999999; /* just to separate link blocks a little */
padding-top: 1px;


}
#navbar li a:hover {
color: #000000; /* changes color of text on rollover */
background-color: #FF9933; /* changes color of background on rollover */
border-left-color: #CC0000; /* changes square to red */
}

#navbar ul {
list-style-type: none; /* gets rid of bullets in list */
}