$(function(){
	// target="_blank" With XHTML 1.1
	$('a.external').click(function(){
		window.open(this.href);
		return false;
	});
});

