$(document).on('mouseup', 'a', function(e){
if(e.button != 0 || !this.className.match(/^(itemLink|link)$/i)
|| !this.href || (this.href && !this.href.match(/^http:\/\//i)) ) return;

history.pushState(history.state,document.title,location.href);
location.href=this.href;
});