$(document).ready(function () {
  $(".slide").jCarouselLite({
      btnGo: [".s1", ".s2", ".s3", ".s4", ".s5", ".s6", ".s7", ".s8", ".s9", ".s10"],
      visible: 1,
      auto: 10000,
      speed: 0
  });
  $(".carousel").jCarouselLite({
      btnGo: [],
      btnPrev: ".prev",
      btnNext: ".next",
      visible: 1,
      auto: 4000,
      speed: 600
  });
  $(".myPage").hover(
        function() {
            $(this).find("ul").show();
        },
        function() {
            $(this).find("ul").hide();
        }
  );
  $(".mainLi").hover(
        function() {
            $(this).find(".catBox").show();
        },
        function() {
            $(this).find(".catBox").hide();
        }
  );
  
  
});
$(function(){
  $('.selectboxwrap').jqTransform();
});
