
jQuery(document).ready(function($) {

//$(document).ready(function() {
// setting the tabs in the sidebar hide and show, setting the current tab
	$('div.popularbox').hide();
	$('div.t1').show();
	$('div#popular_selectors span.t1').addClass('selected');

// SIDEBAR TABS
$('div#popular_selectors span').click(function(){
	var thisClass = this.className.slice(0,2);
	$('div.popularbox').hide();
	$('div.' + thisClass).show();
	$('div#popular_selectors span').removeClass('selected');
	$(this).addClass('selected');
	});
});