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