// JavaScript Document
$(document).ready(function() {



            $(".tabella_planning tr.rigacontenuto").hover(function() { 

				$(this).attr("bgcolor","#e7eed3");

            }, function() { 

				$(this).removeAttr("bgcolor");

            });


        });



