$(function() {
    $.ajaxSetup ({
        cache: false
    });

    $('#novo_newsletter_div').hide();
    $('#carregando_validacao_newsletter').hide();

    $('#novo_news').click(function() {
        $('#novo_newsletter_div').slideDown();
        return false;
    });

    $('#novo_fecharnews').click(function() {
        $('#novo_news').slideDown();
        $('#novo_newsletter_div').slideUp();
        $('#carregando_validacao_newsletter').slideUp();
    });

     $('#novo_form_news').submit(function(event) {
	/*	event.preventDefault();
		
        $('#carregando_validacao_newsletter').empty().html('<p>Enviando...<br/><img src="img/loading_ajax.gif" /></p>').show();

        email = $('#novo_info_email').val();
		$.post('/newsletter/adicionar', {'info_email' : email }, function(data) {
			$('#carregando_validacao_newsletter').empty().html(data).show();
		});

        return false;*/
    });
	
    $('#popup').pause('6000').show('10000');
	
    $('#fechar_popup').click(function() {
        $('#popup').hide('10000');
        return false;
    });
	
    $('#slider_pub').easySlider({
        auto: true,
        continuous: true,
        pause: 5000,
        nextText : 'Próximo »',
        prevText : '« Anterior',
        orientation : 'vertical',
        speed : 400
    });

});
