jQuery(document).ready(function(){
    jQuery('.entry a').click(function(){
        window.open(this.href);
        return false;
    });
});
