$(document).ready(function(){
	$('.item').click(function() {
		if ($(this).attr('class').split('open').length < 2) {
			$(this).siblings('div').show();
			$(this).siblings('div').children('a').show();
			$(this).addClass('open');
		}else {
			$(this).siblings('div').hide();
			$(this).siblings('div').children('a').hide();
			$(this).removeClass('open');
		}
	});

	if ($('#catid').html() != "") {
		// show current category link
		$('a[@name=c'+$('#catid').html()+']').show();
		// show parent category and siblings
		$('a[@name=c'+$('#catid').html()+']').parent('div').show();
		$('a[@name=c'+$('#catid').html()+']').parent('div').siblings('div').show();
		$('a[@name=c'+$('#catid').html()+']').parent('div').siblings('div').children('a').show();
		$('a[@name=c'+$('#catid').html()+']').parent('div').siblings('div').children('a').addClass('open');
		$('a[@name=c'+$('#catid').html()+']').parent('div').parent('div').children('a').show();
		$('a[@name=c'+$('#catid').html()+']').parent('div').parent('div').children('a').addClass('open');
		
		$('a[@name=c'+$('#catid').html()+']').parent('div').parent('div').children('a').parent('div').show();
		$('a[@name=c'+$('#catid').html()+']').parent('div').parent('div').children('a').parent('div').siblings('div').children('a').show();
		
		// capitalize current category
		$('a[@name=c'+$('#catid').html()+']').css('text-transform', 'uppercase');
	}

});
