jQuery(function () {
	jQuery('#entry_content a').click(function () {
		url = jQuery(this).attr('href');
		if(url.indexOf('http') == 0 && url.indexOf('fluentcollab.org') == -1){
			jQuery(this).attr('target', '_blank');
			return true;
		}
	});
});
