jQuery(document).ready(function(){
	// Get all external links by class="external"
	jQuery.each(jQuery('a'), function(){
		if(jQuery(this).hasClass('external-link'))
		{
			// Set the target to _blank
			jQuery(this).attr('target', '_blank');
		}
	});
	jQuery.each(jQuery('a'), function(){
		if(jQuery(this).hasClass('external-link-new-window'))
		{
			// Set the target to _blank
			jQuery(this).attr('target', '_blank');
		}
	});
});

