Как вариант...
<!DOCTYPE html>
<html>
<head>
<script src='http://code.jquery.com/jquery-latest.js'></script>
<!--
<link rel='stylesheet type=text/css href=tmp.css' />
-->
<style type='text/css'>
.sylka {
padding-top:10px;
padding-bottom:10px;
}
.sylka.on {
padding-top:11px;
padding-bottom:9px;
color: green;
}
</style>
<script type='text/javascript'>
$(function (){
$('.sylka').click(function (){
$(this).toggleClass('on');
return false;
});
});
</script>
</head>
<body>
<a href='' class='sylka'>Подробнее</a>
<a href='' class='sylka'>Подробнее</a>
<a href='' class='sylka'>Подробнее</a>
<a href='' class='sylka'>Подробнее</a>
</body>
</html>
</html>