$(document).ready(function() {
// setting the tabs in the sidebar hide and show, setting the current tab
	$('div.tabbed div.tab').hide();
	
	var tab=$.cookie('_tab');
	if ( tab )
	{
		$('ul.tabs li.'+tab+' a').addClass('tab-current');
		$('div.'+tab).show();
	}

// SIDEBAR TABS
$('ul.tabs li a').mouseover(function(){
	var thisClass = this.className.slice(0,2);
	$.cookie('_tab',thisClass);
	$('div.tabbed div.tab').hide();
	$('div.'+thisClass).fadeIn('fast');
	$('ul.tabs li a').removeClass('tab-current');
	$(this).addClass('tab-current');
	});
});
