$(document).ready(function() {

	// setting the tabs in the sidebar hide and show, setting the current tab
	$('div.news-items div').hide();
	$('div.t1').show();
	$('div.t1 div').show();
	$('div.tabbed ul.tabs li.t1').addClass('tab-current');
	
	// SIDEBAR TABS
	$('div.tabbed ul li ').click(function(){
		var thisClass = this.className.slice(0,2);
		$('div.news-items div').hide();
		$('div.' + thisClass).fadeIn(500);
		$('div.' + thisClass + ' div').show();
		$('div.tabbed ul.tabs li').removeClass('tab-current');
		$(this).addClass('tab-current');
		return false;
	});

	// setting the tabs in the sidebar hide and show, setting the current tab
	$('div.calendar div').hide();
	$('div.d1').show();
	$('div.d1 div').show();
	$('div.calendar ul.days li.d1').addClass('days-current');
	
	// SIDEBAR TABS
	$('div.calendar ul li').click(function(){
		var thisClass = this.className.slice(0,2);
		$('div.calendar div').hide();
		$('div.' + thisClass).show();
		$('div.' + thisClass + ' div').show();
		$('div.calendar ul.days li').removeClass('days-current');
		$(this).addClass('days-current');
		return false;
	});	
});
