Features:
- UL LI structure. Best for search engine optimization
- Single sprite for making ON tab and off and hover
- No JavaScript at all. Pure CSS
- Curved Corners
- HTML labels. Stretches tab and maintains curved corners
Progressive enhancement: Shadow Text using jQuery
var menuText;
var menuWidth;
$("div.shadow a").each(function(i){
menuText = $(this).text();
menuWidth = $(this).width();
$(this).css("width",menuWidth)
.empty()
.append("" + menuText + "
" + menuText + "
")
});