$(document).ready(function(){

$('#main p').hover(function(){
	$(this).addClass('p-hover');
},function() {
	$(this).removeClass('p-hover');
});						  
});
