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