$(document).ready(function() {
	$("#sidebar .tabNav ul.nav li a").click(function(){
		rel = $(this).attr('rel');
		box = $(this).parent('li').parent('ul').parent('.tabNav').attr('id');
		$('#' + box + ' ul.nav li').removeClass('active');
		$(this).parent('li').addClass('active');
		
		
		$('#' + box + ' .contentWrap .sidebar-box:visible').hide('slow', function(){
			$('#' + box + ' .contentWrap #' + rel).show('slow');
		});
		return false;
	});
});
