// JavaScript Document
$(document).ready(function() {
   $('tr, li, p').hover(
	  function() {
		 $(this).addClass('hover');
	  }, function() {
		 $(this).removeClass('hover');
	  }
   );
});

