$(document).ready(function() {
 $('.nav ul li').hover(function () {
  $(this).find('ul:first').stop(true, true).animate({opacity: 'toggle', height: 'toggle'}, 0).addClass('active_list');
 }, function () {
  $(this).children('ul.active_list').stop(true, true).animate({opacity: 'toggle', height: 'toggle'}, 0).removeClass('active_list');
 });

});

