$(document).ready(function() {
	//$("#category_menu").hide();
	$("#catshowhide").toggle(function(){ $("#category_menu").hide("slow"); 
										 //$("#catshowhide #disptext").html("Hide");
					},
			function(){ $("#category_menu").show("slow"); 
						//$("#catshowhide #disptext").html("Show"); 
					   }
			);
	$("#company_menu").hide();
	$("#compshowhide").toggle(function(){ $("#company_menu").show("slow");},
			function(){ $("#company_menu").hide("slow");}
			);
	$("#theme_menu").hide();
	$("#themeshowhide").toggle(function(){ $("#theme_menu").show("slow");},
			function(){ $("#theme_menu").hide("slow");}
			);
});
