$(document).ready(function(){
    $('.deletelink').hide();
    $('input[name="_addanother"]').hide();
    $('#aconteceu').bind('click', function() {
        if ($(this).val() != ""){
            var url = '/eventos/aconteceu/';
            window.location.href = url+$(this).val();
        }
    });
    $('#galeria-ministerio').bind('change', function() {
        if ($(this).val() != ""){
            var url = '/ministerios/galeria/';
            window.location.href = url+$(this).val();
        }
    });
    
    $('#id_autores').bind('change', function(){
        var url = '/edificacao/doze-cestos-cheios/';
        if ($(this).val() == ""){
            window.location.href = url;
        }else{
            window.location.href = url+'autor/'+$(this).val();
        }
    });
    
    $('#id_secao').bind('change', function(){
       if ($(this).val() == 1){
           $('.resenha').slideUp();
       } 
       else{
           $('.resenha').slideDown();
       }
    });
    $('.autor').hide();
    $('#id_edificacao').bind('change', function(){
       if ($(this).val() != 3){
           $('.autor').slideUp();
       } 
       else{
           $('.autor').slideDown();
       }
    });
    $('.porcentagem').hide();
    $('#id_resultado').toggle(function() {
        $('.porcentagem').show();
    }, function(){
        $('.porcentagem').hide();
    });
    $('#id_dia_semana').attr('readonly', true);
    
    $('.print').click(function(){
       print();
       return false 
    });
    $('#restante').bind('change', function(){
       window.location.href = $(this).val();
    });
    
    
});
