i ve a navigation bar like the one below..for each
<ul class="nav">
<li class="Today"><a href="/" class="Active"/></li>
<li class="Hot"><a href="/hot" class=""/></li>
<li class="New"><a href="/new" class=""/></li>
<li class="Categoies"><a href="/cat" class=""/></li>
<li class="Terms"><a href="/terms" class=""></a></li>
</ul>
the css to display on mouseout event :
#nav .Today a {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent url(../images/today.png) no-repeat scroll left top;
border:0 none;
height:25px;
text-decoration:none;
width:98px;
}
the css to display on mouseover event
#nav .Today .Active {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:transparent url(../images/today-over.png) no-repeat scroll left top;
border:0 none;
height:25px;
text-decoration:none;
width:98px;
}
BTW, this is done in joomla.. thankx