js hover timeout
$('header nav ul li').hover(function(){ var li=$(this); this.timeout=window.setTimeout(function(){ li.addClass('hover'); },200) },function(){ $(this).removeClass('hover'); if(this.timeout){ window.clearTimeout(this.timeout); } });
$('header nav ul li').hover(function(){ var li=$(this); this.timeout=window.setTimeout(function(){ li.addClass('hover'); },200) },function(){ $(this).removeClass('hover'); if(this.timeout){ window.clearTimeout(this.timeout); } });