$(document).ready(function() {
  $("div.box_big_live p.info span").click(function() {
    alert('Posiadasz włączoną obsługę JavaScript :-).');
  });
  
  $("div.box_big_live table tbody tr").hover(
    function() {
      $(this).addClass('row3');
    },
    function() {
      $(this).removeClass('row3');
    }
  );
  
  $("div.box_big_live table tbody tr").click(function() {
    document.location = '/transmisje/mecz/id/'+$(this).attr('id').substr(7);
  });
});