$(document).ready(function() {

    $("body.page-template-full-width-page-php .box, #access a")
        .click(function() {
            location.href = $(this).find('a').attr('href');
        })
        .mouseenter(function() {
            $(this).css('cursor','pointer');
        });        


});

