jQuery(document).ready(function($) {    

    $('#post_cycle').hover(
        function() { $('#control_prev').fadeIn(); $('#control_next').fadeIn(); $('#post_cycle_box').cycle('pause'); },
        function() { $('#control_prev').fadeOut(); $('#control_next').fadeOut(); $('#post_cycle_box').cycle('resume'); }
    );
    
    $('#post_cycle_box').cycle({
        fx:     'fade',
        speed:   900,
        timeout: 6000,
        next:   '#control_next .next',
        prev:   '#control_prev .prev'
    });

});

