$(document).ready(function() 
    { 
		$("#forum tr").hover(
		  function () {
		   $(this).addClass("odd");
		  },
		  function () {
		   $(this).removeClass("odd");
		   }
		);
    } 
); 
