Drupal.behaviors.st_externallink = function(context) 
{
	$('a:not(.externallink-processed)', context).addClass('externallink-processed').each(
		function() 
		{
			if (this.href.match("^http[s]?://([^\.]*\.)?sievenetworks.com") == null)
			{
				$(this).click(
					function() 
					{
						window.open(this.href, 'st-externalwindow');
						return false;
					}
				);
			}
		}
	);
};
