$.fn.external = function(url)
{
	$(this).live('click', function(e)
	{
		if (!$(this).is('[href*=' + url + ']'))
		{
			return !window.open(this.href);
		}
	});
};
