jQuery(document).ready(function($) {
    $('#fmaControl').html('');

    $('.fma_content').cycle({
        fx: 'fade',
        timeout: 10000,
        delay: -2000,
        speed: 800,
        pager: '#fmaControl',
        easing: 'easeinout',
        before: function() {
            var slide_caption = $(this).find('img').attr('alt');
            $('.slideCaptions').html(slide_caption);
            $('#home_fma_link').attr('href', $(this).find('a').attr('href'));
        }
    });
    Cufon.replace('h1'); // Works without a selector engine
    //Cufon.replace('.cufonLink'); // Requires a selector engine for IE 6-7, see above
});
