
$(document).ready(
function(){
  $('.inner').innerfade({
  speed: 'slow',
  timeout: 7000,
  type: 'sequence',
  containerheight: '421px'
 });
$(".linky tr:first-child").addClass("nadpis");
$(".linky tr:nth-child(odd)").addClass("zebra");
$(".linky td:nth-child(5)").addClass("center");

$(".line tr:first-child").addClass("nadpis");
$(".line tr:nth-child(odd)").addClass("zebra");

$("tr").mouseover(function(){
  $(this).addClass("over");}
 ).mouseout(function(){
  $(this).removeClass("over");
});

});
