$(document).ready(function(){ $(".topnav").click(function() { //마우스를 topnav에 오버시 $(this).parent().find(".subnav").toggle(10).show(); //subnav가 내려옴. }); $(window).load(function() { $('.flexslider').flexslider({ animation: "slide" }); });; }); function setPage(arg) { //navigation hn:1depth, sn:2depth, cn:3depth 를 받음 page = jQuery.extend({ hn : "", sn : "", cn : "" }, arg || {}); if(window.console) { console.log("hn : " + page.hn + "\nsn : " + page.sn + "\ncn : " + page.cn); } $(".snb ul li.hn" + page.hn).find("> a").addClass("on"); //1depth 활성 $(".tab-menu ul li.sn" + page.sn).find("> a").addClass("on").end().find("> ul").addClass("on").find("> li.cn" + page.cn + " a").addClass("on"); //2depth 활성 } $(document).ready(function(){ $("button.btn-menu").click(function() { //마우스를 topnav에 오버시 $(this).parent().find("ul").slideToggle("slow"); //subnav가 내려옴. }); });