
/* - jqmenu.js - */
jQuery(document).ready(function(){
  jQuery('.down-list').width(jQuery('.dropdown-menu').width()-2);
    jQuery('.dropdown-menu').hover(
      function () {
         jQuery('.menu-first', this).addClass('slide-down');
         jQuery('.down-list', this).slideDown(20);
       },
       function () {
          obj = this;
          jQuery('.down-list', this).slideUp(10, function(){ jQuery('.menu-first', obj).removeClass('slide-down'); });
        }
      );
   
  });



