
/* http://jaspan.com/external-links-in-new-window-without-target
 * Requires JQuery
 */


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