$(document).ready(function(){
	$(".tab h1").bind("click", function(){

var tabstatus = $(this).next().attr("class");
			if (tabstatus == "tabshow") {
				$(this).next().removeClass("tabshow").addClass("tabhide");
			}
			else {
				$(this).next().removeClass("tabhide").addClass("tabshow");
			}

			

			var checkcss = $(this).attr("class");
			if (checkcss == "open") {
				$(this).removeClass("open").addClass("fold");
			}
			else {
				$(this).removeClass("fold").addClass("open");
			}
			});
			
});
