$(document).ready(function() {
    $('.carousel').cycle({
        fx: 'fade'
    });
    
    $('.img-box .text').hide();
    $('.img-box').mouseover(function(){
        $(this).children('.text').show();
    });
    $('.img-box').mouseout(function(){
        $(this).children('.text').hide();
    });
});
