function openSlideToggle() {
	var getValue = location.search;
	
	if (getValue) {
		switch (getValue.substring(1)) {
			case "cate": document.getElementById("cate").style.display = "block"; break;
			case "arc": document.getElementById("arc").style.display = "block"; break;
		}
	}
}
	
$(document).ready(function(){
$(".button01").click(function () {
  $("#cate").slideToggle();
});
});


$(document).ready(function(){
$(".button02").click(function () {
  $("#arc").slideToggle();
});
});
 
 
/*
window.onload = function () {
	var getValue = location.search;
	
	if (getValue) {
		document.getElementById("arc").style.display = "block";
		document.getElementById(getValue.substring(1)).style.fontWeight = "bold";
	}
}*/

