$("+ p", this)) and $("p", this))?
<h1>introduction</h1>
<p id="pp">it is a test
<script>
$(document).ready(function(){
$("h1+p").hide();
$("h1").hover(function(){
$("+p",this).show()},
function(){
$("+p",this).hide();});
});
</script>