$(document).ready(function() {
	var category = $("h3.category");
	category.click(function(){
		if($("div#"+$(this).attr("id")).hasClass("expand")){
			$("div#"+$(this).attr("id")).removeClass("expand");
			$(this).removeClass("down");
		}else{
			$("div.cat-list").removeClass("expand");
			category.removeClass("down");
			$("div#"+$(this).attr("id")).addClass("expand");
			$(this).addClass("down");
		}
	});
});

