jQuery('li.has-sub ul li:even').addClass('even');
jQuery('li.has-sub ul li:odd').addClass('odd');
The classes are being added to a drop down menu. In one drop down menu the classes are added correctly but the another dropdown is adding class even to odd elements. I think that jquery might be counting all of the list items together, which still doesnt explain why it is counting 1 as even. You can see the problem on this url:
The menu with the yellow background starting with rafting trips.
http://bit.ly/XAEmh7
I have tried adding this in an attempt to make jQuery count only the ul in question but no luck.
