// JavaScript Document
$(document).ready(function() {
// setting the tabs in the sidebar hide and show, setting the current tab
	$('div.tabbed div').hide();
	$('div.t1').show();
	$('div.t1 div').show();
	$('div.tabbed ul.tabs li.t1 a').addClass('choosen');
	
// SIDEBAR TABS
$('div.tabbed ul li a').click(function(){
	var thisClass = this.className.slice(0,2);
	$('div.tabbed div').hide();
	$('div.' + thisClass).show();
	$('div.' + thisClass +' div').show();
	$('div.tabbed ul.tabs li a').removeClass('choosen');
	$(this).addClass('choosen');
	});
});