$(document).ready(function()
{
	$('.tr_hover').hover(function()
	{
		$(this).children().addClass('tr_hover_h');
	},function()
	{
		$(this).children().removeClass('tr_hover_h');
	});
});
