jQuery(document).ready(function() {

      $('.box-white').mouseover(function() {

$(this).addClass('box_black');
return false;
});


$('.box-white').mouseout(function() {
$(this).removeClass('box_black');
return false;
});



      $('.imm').mouseover(function() {

$(this).addClass('imm_on');
return false;
});

$('.imm').mouseout(function() {
$(this).removeClass('imm_on');
return false;
});


$('#cennik tr:even').addClass('tr_even');



 $(function() {
        $('.gal').lightBox();
    })



});






