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