$(function() {

	$(".post-text p").removeAttr("style");
	$(".post-text span").removeAttr("style");
	
	
	$(".categories li:not(.current-cat-parent) ul").hide();
	
	
	$(".categories li ul").parent().find("a:first").click(function(){
	
	$(".categories li:not(.current-cat) ul:visible").slideUp(300);
	$(this).next().slideDown(300);

	
	return false;
	});

			
});

