jQuery(document).ready(function(){ 
     jQuery('#produse tr').click(function() {
    var href = jQuery(this).find("a").attr("href");
    if(href) {
        window.location = href;
    }
    });
});
