$(document).ready(function () {
//Title and Password
    $('#chkBusca, #chkKeywords').click(function() {
        if($('#chkBusca').attr('checked') || $('#chkKeywords').attr('checked')){
            $('#valorBusca').focus();
        }
    });
    $("#valorBusca").blur(function () {
         if($(this).val() == ''){
             $('#chkBusca').attr('checked', false);
             $('#chkKeywords').attr('checked', false);
         }
    });
    $("#valorBusca").click(function () {
         $('#chkBusca').attr('checked', true);
    });

//Author
    $('#chkAuthors').click( function() {
        if($(this).is(':checked')){        
            $("#valorBuscaAuthors").focus();
        }
    });
    $("#valorBuscaAuthors").click(function () {
        $('#chkAuthors').attr('checked', true);
    });
    $("#valorBuscaAuthors").blur(function () {
        if($(this).val() == ''){
            $('#chkAuthors').attr('checked', false);
        }
    });
    

//Volume    
    $('#paperArea').change(function() {
        $('#chkType').attr('checked', true);
    });

//Submit

    $('#submit_button').click(function(){
        $('#form_busca').submit();
    });
    
//click on authors
/*    $('.author_name').click(function(){
            $('#chkBusca').attr('checked', false);
            $('#chkKeywords').attr('checked', false);
            $('#valorBusca').val('');

            $('#chkType').attr('checked', false);
            
            $('#chkAuthors').attr('checked',true);
            $('#valorBuscaAuthors').val($(this).attr('title'));
            $('#form_busca').submit();
    });    
*/

});
