 $(document).ready(function(){

/*podbarvení řádků tabulky po  přejetí myší*/

var el = $('#nabidka tr');

el.mouseenter(function(){
if  ($(this).attr("class") == undefined){    
     $(this).css({ 'background' : '#ddd url(obr/gradient.png) repeat-x 0 -60px', 'opacity':'0.8'})
       }
}).mouseleave(function(){
if  ($(this).attr("class") == undefined){    
     $(this).css({ 'background' : 'none'})
       }
});







});

