			$(document).ready(function () {
			$("a").attr('onfocus', 'blur()'); // ukryj fokus
			
			$("a[rel='_blank']").click(function() { // rel="_blank" zamiast target="_blank"
			var newWindow = window.open(this.href);
			return false;
			});
		  });