// JavaScript Document
jQuery(document).ready(function(){
	$('table tr').hover(function(){
		// Mouseover action
		$(this).addClass('hover');
	}, function(){
		// Mouseout action
		$(this).removeClass('hover');
	});
});