$(document).ready(function() {
	$('a').each(function() { 
		if ($(this).hasClass('_blank'))
		{
			$(this).attr('title', 'This link opens in a new window');
			$(this).bind('click', function () {
				window.open($(this).attr('href'), '_blank').focus(); 
				return false;
			});
		}
	}); 
});