jQuery(document).ready(function(){
	$('.accordion').next().hide();
	if ($('.active').html() != undefined) {
		$('.active').parent().parent().show();
	} else {
		$('#category_1').next().show();
	}
	$('.accordion').click(function() {
		$(this).next().toggle('fast');
		return false;
	})
});
