$(document).ready(function(){
  $('#primary-nav li ul').css({
    display: "none",
  }); 
  $('#primary-nav li').hoverIntent(function() {
    $(this)
      .find('.unli2')
      .stop(true, true)
      .slideDown('slow');
  }, function() {
    $(this)
      .find('.unli2')
      .stop(true,true)
      .slideUp('slow');
  });               
  $('#primary-nav li li ul').css({
    display: "none",
  });
  $('#primary-nav li li').hoverIntent(function() {
    $(this)
      .find('.unli3')
      .stop(true, true)
      .slideDown('slow');
  }, function() {
    $(this)
      .find('.unli3')
      .stop(true,true)
      .slideUp();
  });
});
