$(document).ready(function () { //상단 공통 슬라이드 메뉴 $(".topnav").hover(function() { $(this).parent().find(".subnav").show(); $(this).parent().hover(function() { }, function(){ $(this).parent().find(".subnav").hide(); }); }); // 상단으로 스크롤 var speed = 500; // 스크롤속도 $(".gotop").css("cursor", "pointer").click(function() { $('body, html').animate({scrollTop:0}, speed); }); //메인 비쥬얼 슬라이드 //Can also be used with $(document).ready() $(window).load(function() { $('.flexslider').flexslider({ animation: "fade",//slide slideshowSpeed: 3000, directionNav: true, controlNav: false, slideToStart: 0, pauseOnHover: true, animationSpeed: Modernizr.touch ? 500 : 1000 }); }); });