var liveInfo = {};
var topics = {};
function data(json) {
	$.each(json.rows, function(i, row) {
		liveInfo[i] = row.cell;
	});
}
function data_top(json) {
	$.each(json.rows, function(i, row) {
		topics[i] = row.cell;
	});
}
