jQuery(document).ready(function(){
    jQuery('div#cycle').cycle({
        fx: 'fade',
        prev: '.prev',
        next: '.next',
        timeout: 6000,
        speed: 500
    });

    jQuery('#container').find('a:has(img)').fancybox({
        'overlayOpacity': '0.7',
        'overlayColor': '#000',
        'titleShow':false,
        'easingIn':'swing'
    });
});

