Hej

Opis pluginu :
http://buildinternet.com/2009/03/sliding-b...ns-with-jquery/Demo:
http://s3.amazonaws.com/buildinternet/live...boxes/index.htmDobrze że próbujesz coś takiego sam napisać bo nie jest to trudne

Odnośnie Twojego kodu robisz prostu błąd łapiesz wszystkie elementy o takiej klasie a nie wewnątrz pojedynczego elementu li. Zakładając że Twój HTML wygląda tak:
<li><a href="#">cos tam
<p>cos tam
</p></a></li>
Twój js powinien wyglądać tak
$(document).ready(function(){
$(".content ul li a").hover(function(){
$(this).find('p').show();
},
function(){
$(this).find('p').hide();
});
});
Jeszcze może być drugi wariant Twojego kodu:
wtedy Twój js powinien wyglądać tak:
$(document).ready(function(){
$(".content ul li a").hover(function(){
$(this).parent().find('p').show();
},
function(){
$(this).parent().find('p').hide();
});
});