The images work with these background-image-position values - kind of cool.. easy and flexible considering usually 3 states is what you want for rollover type images 
Code:
#navbar li a
{
font-family: "Century Gothic", sans-serif;
color: yellow;
line-height: 1.5em;
margin: 0;
font-size: 1.30em;
background: url(../images/tabs_h.gif) no-repeat top left;
height: 65px;
width: 118px;
float: left;
}
#navbar li a:hover
{
font-family: "Century Gothic", sans-serif;
color: yellow;
text-align: center;
line-height: 1.5em;
margin: 0;
height: 65px;
width: 118px;
font-size: 1.30em;
background: url(../images/tabs_h.gif) no-repeat top center;
float: left;
}
#navbar li a:active
{
font-family: "Century Gothic", sans-serif;
color: yellow;
text-align: center;
line-height: 1.5em;
margin: 0;
height: 65px;
width: 118px;
font-size: 1.30em;
background: url(../images/tabs_h.gif) no-repeat top right;
float: left;
}
Bookmarks