jQuery(document).ready(function(){
								
jQuery("ul:not(.children) > li.cat-item:not(.current-cat, .current-cat-parent)").append("<span>[+]</span>");
jQuery("ul:not(.children) > li.cat-item.current-cat").append("<span>[&mdash;]</span>");
jQuery("ul:not(.children) > li.cat-item.current-cat-parent").append("<span>[&mdash;]</span>");

	jQuery("ul:not(.children) > li.cat-item span").toggle(
 
        function(){					
 	    	jQuery(this).parent().find('ul').show("slow");
			jQuery(this).html("[&mdash;]");	
			if(jQuery(this).parent().hasClass("current-cat") || jQuery(this).parent().hasClass("current-cat-parent")) {
				jQuery(this).parent().find('ul').hide("slow");	
				jQuery(this).html("[+]");
			}				
		},
 
		function(){
		jQuery(this).parent().find('ul').hide("slow");	
		jQuery(this).html("[+]");
			if(jQuery(this).parent().hasClass("current-cat") || jQuery(this).parent().hasClass("current-cat-parent")) {
				jQuery(this).parent().find('ul').show("slow");
				jQuery(this).html("[&mdash;]");	
			}					
	       }
	);
	
	jQuery(".ban").toggle(
		 function(){
			jQuery(".banner").show(); 
		 },
		 function(){
			 jQuery(".banner").hide();
		 }
	);
});	
