var back;

jQuery(document).ready(function(){
 $(".catalog tr.mid").mouseover(function () { 
		back = $(this).css("background-color");
		$(this).css({background: "#d5e8ee"});
   }).mouseout(function () { 
		$(this).css({background: back});
   });
});
