$(document).ready(function(){
    var defaultSearchText = $('#general-search-form input:first').val();
    
    $('#general-search-form').submit(function(){
        var termo = $('#general-search-form input:first').val();
        if(termo == '' || termo == defaultSearchText){return false;}
        $(this).attr('action', $(this).attr('action') + termo);
    });


    $('#general-search-form-cross').submit(function(){
        var termo = $('#general-search-form-cross input:first').val();
        if(termo == '' || termo == defaultSearchText){return false;}
        $(this).attr('action', $(this).attr('action') + termo);
    });
})
