

$(document).ready(function(){
	var tabContainers = $('#news-tn .fcitn-tabcont');
		tabContainers.hide().filter(':first').show();
								
		$('#news-tn .fcitn-tabmenu a').click(function () {
			tabContainers.hide();
			tabContainers.filter(this.hash).show();
			$('#news-tn .fcitn-tabmenu a').removeClass('tnselected');
			$(this).addClass('tnselected');
			return false;
		}).filter(':first').click();
});
