// Dependancies: jQuery Core
// Author: Big Mike @ dDFCB

(function($)
{
	$.fn.external = function()
	{
		$(this).click(function()
		{
			window.open($(this).attr('href'));
			return false;
		});
	};
})(jQuery);
