$(document).ready(function() {
    $('#titulo a').bind('click', function(event) {
        if (window.history.length > 1 ) {
            window.history.back(-1);
        } else {
            window.location.href = "/";
        }
        return false;
    });
});

