Para este menu vou utilizar CSS somente.
<html>
<head><style type="text/css">
a
{
text-decoration: underline;
color: black;
background-color: transparent;}
/* The bar */
#nav { position: absolute; bottom: 0px; right: 10px; }/* The tabs */
#nav ul { display: inline; margin: 0; padding: 10px 10px 0 1px; list-style: none; }/* Standard tab */
#nav li { float: left; background:url(tab_off_ns1.gif) no-repeat left top; margin: 0; padding: 0 0 0 5px; }
#nav a {
font-size: 105%;
display: block;
background: url(tab_off_ns2.gif) no-repeat right top;
padding: 8px 15px 0px 8px;
text-decoration: none;
font-weight: bold;
line-height: 1.5em;
color: #444;
}/* Hover over tab */
#nav li:hover a { color:#333; background:url(tab_on_ns2.gif) no-repeat right top; }
#nav li:hover { background:url(tab_on_ns1.gif) no-repeat left top; color: #000;
}/* Current tab */
#nav #current { background:url(tab_on_ns1.gif) no-repeat left top; }
#nav #current a {
background:url(tab_on_ns2.gif) no-repeat right top;
padding-bottom:1px;
color:#000;
}</style>
</head><body>
<div id="nav">
<ul><li >
<a href="#">MENU 1</a>
</li>
<li >
<a href="#">MENU 2 </a>
</li>
<li >
<a href="#">MENU 3 </a></li>
<li id="current" >
<a href="#">MENU 4</a>
</li>
<li >
<a href="#">MENU 5</a>
</li>
</ul>
</div></div>
</body>
</html>
tab_off_ns1.gif
![]()
tab_off_ns2.gif

tab_on_ns1.gif
![]()
tab_on_ns2.gif
