$(function() {
	$('a[rel=external]').live('click', function (e) {
		e.preventDefault();
		if ($(this).attr('href') != '#') {
			window.open($(this).attr('href'));
		}
	});
});
