I take it this is for your navigation? you can ad in id="current" to your links for the current page, or add a selector id on the body tag, there is something on this site about it, I don't have time to search for you, but look around and you will find it..... id in body tag to show current page.
ok this my code on de css part :
html:
<ul id="nav" name="nav">
<li class="inicio"><a href="index.html"></a></li>
<li class="servicios"><a href="servicios.html"></a></li>
<li class="contacto"><a href="contacto.html"></a> </li>
<li class="galeria"><a href="galeria.html"></a></li>
</ul>
ul#nav li.active a {
background:url(../images/menuhover.gif) no-repeat;
background-position:bottom;
}
you can ad in id="current" to your links for the current page, or add a selector id on the body tag, there is something on this site about it, I don't have time to search for you, but look around and you will find it..... id in body tag to show current page.