﻿$(document).ready(function() {

    $('#rotator').cycle({
        fx: 'fade',
        autostop: 1,
        autostopCount: 6,
        speed: 1000,
        timeout: 6300,
        pager: '.hero-nav',
        delay: -4000
    });

    $('.hero-nav a').click(function() {
        $('#rotator').cycle('pause');
    });

});

