$(document).ready(function() {
   $('.tableD tbody tr').hover(
	  function() {
		 $(this).addClass('hovered');     /* On hover add the class 'hovered' and apply the hovered styles */
	  }, function() {
		 $(this).removeClass('hovered');  /* On mouseout remove the class 'hovered' and reset the styles   */
	  }
   );
});


$(document).ready(function() {
   $('.index_activites_course_inner a').hover(
	  function() {
		 $(this).addClass('hovered');     /* On hover add the class 'hovered' and apply the hovered styles */
	  }, function() {
		 $(this).removeClass('hovered');  /* On mouseout remove the class 'hovered' and reset the styles   */
	  }
   );
});





/* CHAT ROOM */

