/*  Formatovanie tabulky pre jQuery  */

(function($){
$(document).ready(function() {  
     $('table td:even').addClass('even');  
     $('table td:odd').addClass('odd');    
 });
})


(jQuery);
