/* js for TJS */
/*
var jq = jQuery;

jq('table tr').each( function(i) {
  if ( i % 2 != 1 ){
    jq(this).addClass('odd');
  }
});
*/

