$(document).ready(function(){
	$('a[rel="_blank"]').click(function() {
		window.open($(this).attr('href'));
		return false;
	});
});

