// ROUNDED CORNERS
// http://www.malsup.com/jquery/corner/

// ADDS even/odd classes to tables with a class of zebratable
// From: http://www.alistapart.com/articles/zebratables




window.onload = function(){
    $("tr:nth-child(odd)").addClass("odd");
};

