$(document).ready(function(){ $(function(){ var startSlide = 1; $('#slides').slides({ container: 'slide', pagination: true, /* generateNextPrev: true, next: 'next', prev: 'prev', */ generatePagination: true, paginationClass: 'page', start: 1, effect: 'slide', slideSpeed: 1000, play: 3000, pause: 0, start: startSlide }); }); }); $(document).ready(function(){ $('.dropdwon').hide(); $('.topnav').hover(function(){ $(this).parent().find('.dropdwon').slideDown(500); $(this).parent().hover(function() { }, function(){ $(this).parent().find(".dropdwon").slideUp('fast'); }); }); /* $('.dropdwon').mouseleave(function(){ $(this).slideUp(500); }); */ }); 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); } if(page.hn != 10) { $("#snb > ul > li.hn" + page.hn + " div").addClass("on"); //1depth 활성 } }