//表格操作：隔行换色,鼠标经过变色
$(document).ready(function(){
	$('#tb_bgs tbody tr:odd').addClass('odd');
	$('#tb_bgs tbody tr').hover(
		function() {$(this).addClass('highlight');},
		function() {$(this).removeClass('highlight');}
	);
});
