Alternating style on Autocomplete

Alternating style on Autocomplete

I'd like to propose adding a CSS class to alternating items in the autocomplete menu. Makes it easier to see when you have many items or items with long text.

Add the following line to the autocomplete "refresh" function:
  1.     this.element.children("li.ui-menu-item:odd a").addClass("ui-menu-item-alternate");
And the following CSS definitions:
  1.     .ui-autocomplete li.ui-menu-item {
  2.       padding: 1px;  // needed to prevent the item sizes from changing on hover
  3.     }
  4.     .ui-autocomplete a.ui-menu-item-alternate {
  5.       background-color: White;  // alternate item bgcolor
  6.     }
  7.     .ui-autocomplete a.ui-state-hover {
  8.       font-weight: normal !important;  // rather not bold the hover item (changes the width)
  9.     }