Styling af kommentar-funktion I Drupal

Styling af kommentar-funktion - hveranden med forskellig class
Husk at tilføje xxx.js filen i info filen !
Her tildeles en class "blaa" og en class "red" til henholdsvis lige og ulige kommentarer.
WC3 validering: 
jQuery
Kode (XHTML, PHP, CSS etc.): 
$(document) .ready(function() { $('.comment:odd') .addClass('blaa') ; $('.comment:even') .addClass('red') ; });