jQuery(document).ready(function(){
								
jQuery("ul:not(.children, .per) > li.cat-item:not(.current-cat, .current-cat-parent)").append("<span>[+]</span>");
jQuery("ul:not(.children, .per) > li.cat-item.current-cat").append("<span>[&mdash;]</span>");
jQuery("ul:not(.children, .per) > 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("ul:not(.children, .per) > li.cat-item > a").corner("round bottom 0px cc:#333333");
	jQuery("ul:not(.children) > li.cat-item").corner("round 5px cc:#ffffff");
	
	jQuery(".ban").toggle(
		 function(){
			jQuery(".banner").show(); 
		 },
		 function(){
			 jQuery(".banner").hide();
		 }
	);
	
	jQuery("ul.per li").corner("round 5px");
	jQuery(".rated ul li .item").corner("round 5px");
	jQuery(".rated ul li .item .background").corner("round 5px top cc:#ffffff");
	jQuery(".comments-link").corner("round 5px");
	jQuery(".search").corner("round 5px cc:#007799");
	jQuery("#s").corner("round 5px cc:#007799");
	jQuery("ul:not(.children) > li.cat-item > a").corner("round 5px cc:#ffffff");
	jQuery("ul:not(.children) > li.cat-item.current-cat").corner("round bottom 5px cc:#ffffff");
	jQuery("ul:not(.children) > li.cat-item.current-cat > a").corner("round bottom 5px cc:#333333");
	jQuery("ul:not(.children) > li.cat-item").corner("round 5px cc:#ffffff");
	jQuery(".enter").corner("round 5px");
	//jQuery("#menu").corner("round 5px");
	jQuery("#menu").corner("round tr 5px cc:#ff5500");
	jQuery("#menu").corner("round tl 5px cc:#f2f2f2");
	jQuery("#menu").corner("round bottom 5px");
	jQuery(".skin").corner("round top 5px");
	jQuery(".together").corner("round 5px");
});	