/*左カラム方面別メニュー*/

$(document).ready(function(){

$(".toggle_container_areabox").hide();

$("h2.trigger").toggle(function(){
$(this).addClass("active"); 
}, function () {
$(this).removeClass("active");
});

$("h2.trigger").click(function(){
$(this).next(".toggle_container_areabox").slideToggle("slow,");
});

$("h3.trigger").toggle(function(){
$(this).addClass("active"); 
}, function () {
$(this).removeClass("active");
});

$("h3.trigger").click(function(){
$(this).next(".toggle_container_areabox").slideToggle("slow,");
});


});
