$(document).ready(function(){
$(".slider").hover(
function () {
$(this).find("p").fadeIn();
},
function () {
$(this).find("p").fadeOut();
}
);
});