$(document).ready(function() {
    $('.featureBox').css('cursor','pointer');
    $('.featureBox').click(function() {
        window.location.href=$(this).find('.featureLink').attr('href');
    });
});
