$(document).ready(function() {

 $('#homeImagesContent').cycle({ 
    fx:    'fade', 
    speed:  1500,
    timeout: 6000,
    before: onBefore,
    after: onAfter 
 });
 
 
});




function onBefore() { 
    $('#homeImagesDescriptions h3').fadeOut(); 
} 



function onAfter() { 
    $('#homeImagesDescriptions h3').html(this.alt);
    $('#homeImagesDescriptions h3').fadeIn();
    
}



