$(function () {
		var tabContainers = $('div.news > div');
		tabContainers.hide().filter(':first').show();
		
		$('ul.news-navigation a').click(function () {
			tabContainers.hide();
			tabContainers.filter(this.hash).show();
			$('ul.news-navigation a').removeClass('selected');
			$(this).addClass('selected');
			return false;
		}).filter(':first').click();
	});
	
	$(function () {
		var tabContainers = $('div.resources > div');
		tabContainers.hide().filter(':first').show();
		
		$('ul.resources-navigation a').click(function () {
			tabContainers.hide();
			tabContainers.filter(this.hash).show();
			$('ul.resources-navigation a').removeClass('selected');
			$(this).addClass('selected');
			return false;
		}).filter(':first').click();
	});
