$(document).ready(function(){
	$('a[rel=blank]').each(function(){
		$(this).attr('target', '_blank').attr('rel', '');
	});
});

