$(document).ready(function() {
    $("#rotator").cycle({
        fx: 'fade',
        speed: 'fast',
        timeout: 5000,
        pager: '#rotator_pager',
        next: '#rotator_next',
        prev: '#rotator_previous'
    })
    
    $(".module_login").click(function(e) {
        open_login_overlay("View Exclusive Content", "Please login below to view this content");
        e.preventDefault();
        e.stopPropagation();
    });

});
