function windowBlank(path)
{
  return false;
  //window.open(path, '_blank', 'left=400, top=100, width=500, height=350, resizable=1, scrollbars=1');
}


$(document).ready(function(){


  $('table.vypis-alb tr').click(function () {
    var url = $(this).children("td.nazev").children("a").attr("href");
    if (url) {
      //alert ("je url");
      window.location = url;
    } else {
      //alert ("zadna url");
    }
  });
/*
  $("table.vypis-alb tr").hover( function () {
    $(this).children("td.nazev").children("a").addClass("hover"),
    function () { 
      $(this).children("td.nazev").children("a").removeClass("hover");
  });
*/
});



