
$(document).ready(function(){

    $('.slideshow').cycle({
		fx: 'fade',
        speed:  500,
        timeout: 3000,
        prev:   '#prev',
        next:   '#next'
	});

    $('#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");
        });
    });


});

