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