$(function(){
    var post$ = $('.blog article.post');
    post$
        .css('cursor', 'pointer')
        .click(function(e){
            if( e.which == 1 ) {
                window.location = $(this).find('.entry-title a').attr('href');
            }
        });
    $('.single a:has(img)').lightBox();
});

