$(document).ready(function(){
	CC.newsSetExternalLinks();
	CC.externalLinks();
});

/* -------------------------------------------------------------------- */

var CC={};

CC.externalLinks=function(){
	$('a.external').click(function(){
		window.open($(this).attr('href'));
		return false;
	});
};

CC.newsSetExternalLinks=function(){
	$('#newsContent .news .content a').addClass('external');
};

