Hi Joe, Be aware that by using spans instead of anchors you will be breaking keyboard access to the submenus. Maybe using an anchor without a href attribute would be a better option? If you still want to use spans then you could probably change this line:
if (o.autoArrows) addArrow( $('>a:first-child',this) ); to this: if (o.autoArrows) addArrow( $('>:first-child',this) ); I just removed the 'a' from before ':first-child'. Good luck. Joel Birch.