document.observe('dom:loaded', function() {
	var fn = function(e){
		if (e.shiftKey || e.altKey || e.ctrlKey || e.metaKey) {
			return true;
		}
		else {
			var oWin = window.open(this.getAttribute('href'), '_blank');
			if (oWin) {
				if (oWin.focus) {
					oWin.focus();
				}
				Event.stop(e);
				return false;
			}
			oWin = null;
			return true;
		}
	};
	
	try { $$('.hit-rating a:not(.expand)').invoke("observe", "click", fn); }
	catch (e) {}
});