﻿/*
$(function(){
    $(".menu_gloval ul.sec_mn:not(:eq(0))").hide();
    $(".menu_gloval ul.sec_ttl").click(function () {
 $(this).next().slideToggle("slow");
});
    });

*/

$(function(){
    $(".menu ul.sec_mn").hide();
    $(".menu ul.sec_ttl").click(function () {
 $(this).next().slideToggle("slow");
});
    });
