$(function()
{
	$('a.external').click(function(event)
	{
		var href = $(this).attr('href');
		window.open(href);
		event.preventDefault();
	});
});