﻿Due to the fact that jquery.hoverintent r6 uses bind() and not live() and jquery live mouseevents quirks I changed the lines:

86:  if (e.type == "mouseenter") {
104: return this.bind('mouseenter', handleHover).bind('mouseleave', handleHover);

to

86: if (e.type == "mouseenter" || e.type == "mouseover") {
104: return this.live('mouseenter mouseleave', handleHover);