$(document).ready(function(){
    $('.sitemap .show-hint').hover(function(){
       $(this).children('P').show('fast');
    }, function(){ 
       $(this).children('P').hide('fast');
    });
});
