$(document).ready(function() {
	$("p").hover(function() {
		$(this).fadeOut(2000);
	    });
    });
