$(function() {
	$('.linkOut, .non-html').live('click',function(e) { 
	var newWindow = window.open(this.getAttribute('href'), '_blank');
	    newWindow.focus();
	    return false;
	});
});