function onBeforeCy() {
    $('.h2-text > h2').fadeOut('slow'); 
    $('.p-text > p').fadeOut('slow'); 
}
function onAfterCy() {
    $('.h2-text > h2').html($(this).attr('title')).fadeIn('slow'); 
    $('.p-text > p').html($(this).attr('alt')).fadeIn('slow'); 
} 

$(document).ready(function(){

    $('.img-holder').cycle({ 

        before: onBeforeCy,
        prev:   '.link-prev', 
        next:   '.link-next',

        after: onAfterCy


    });
    
});

