$(function() {
    $('div.infoBlock h5 a').each(function() {
        var href = $(this).attr('href');
        $(this).parents('div.infoBlock').css({cursor: 'pointer'}).click(function() {
            window.location.href = href;
        });
    });
});
