$(document).ready(function(){      
$('#slideBanner').cycle({
    fx:     'scrollRight',
    speedIn:  'slow',
    speedOut: 'slow',
    timeout:  '4000',
    pager:    '#destaque_links',
    random:   true
});

$('#sendnews').click(function() {
    var email = $('#email').val();
    if(email) {
        $.ajax({
            type: "POST",
            url:  "/newsletter/index/",
            data: "email=" + email,
            success: function(msg){
                alert(msg);
            }            
        });
    }
    return false;
});

});
