$(document).ready(function(){
  // lichým řádkům přidá třídu alt
  $("tr:even").addClass("even");
  // pro sudé řádky slouží :odd
  $("tr:odd").addClass("odd");
  
  // najetí myší
  $("tr").mouseover(function(){
    $(this).addClass("over");
  });
   
  // odjetí myši
  $("tr").mouseout(function(){
    $(this).removeClass("over");}
  );

  $(".ttip").toolTip();
  
  $("#footer .right a,a.newin").click(function(){
    window.open(this.href);
    return false;}
  );
  
	$('#horizontal_scroller').SetScroller();
  
});


