function changeRowColor( o ) {
    o.className = ( o.className == 'even' ? 'odd' : 'even');
}

