$(document).ready(function() {

	$("a.jslink").each(function() {
		this.href += "?target=" + this.target;
		this.target = "_self";
	});

});