$(document).ready(function() {
	$("div.opensub").click(function() {
		var th = $(this);
		if(th.hasClass("b-plus")) {
			th.removeClass("b-plus").addClass("b-minus");
			th.parents("li:first").find("ul:first").show();
			}
		else {
			th.removeClass("b-minus").addClass("b-plus");
			th.parents("li:first").find("ul:first").hide();
			}
		});
	});
