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

