
$(document).ready(function(){
  $('#products li').hoverIntent({
    sensitivity: 1,
    interval: 100,
    timeout: 500,
    over: function() {
      $(this).addClass('hover');
    },
    out: function() {
      $(this).removeClass('hover');
    }
  })
  
  $('.wide #nav .products').click(function(event){
    event.preventDefault();
    $('#products').toggle();
  })
  
})



