
$(document).ready(function(){

    $('#proximos > table > tbody > tr').css("cursor", "pointer");
    var conciertos = $('#proximos > table > tbody > tr');
    conciertos.each(function(){
        $(this).click(function() {
            document.location = $(this).find("td > a").attr("href");
        });
    });

});

