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