$(function(){

	$('tr#highlight_row1').hover(function(){
		$(this).stop().animate({backgroundColor: '#c87911'}, 'fast');
	},function(){
		$(this).stop().animate({backgroundColor: '#cbde96'}, 'fast');
	});
	$('tr#highlight_row2').hover(function(){
		$(this).stop().animate({backgroundColor: '#c87911'}, 'fast');
	},function(){
		$(this).stop().animate({backgroundColor: '#37411b'}, 'fast');
	});
	
});

