$('.hover_table td').live('mouseover', function() {
	$(this).parent().css('background-color', '#a4c4ec');
});

$('.hover_table td').live('mouseout', function() {
	$(this).parent().css('background-color', '#DDE6F1');
});