jQuery(document).ready(function(){
	$(".children").hide();
	$(".cat-item a").click(function (){
		var n = $(this).next(".children").length;
		if( n > 0 ){
			$(this).next(".children").slideToggle();
			return false;
		}
	});
});
