$(document).ready(setup);
function setup()
{
    $('#testimonial').cycle({
        fx:     'fade',
        speed:  'slow',
        timeout: 12000
    });

    $('#cycle-content').before('<div id="cycle-nav">').cycle({
        fx:     'fade',
        speed:  'slow',
        timeout: 10000,
        pager:  '#cycle-nav',
        containerResize: 0,
        cleartype: true
    });
};