function updateJSON(json)
{
	var elId;
	for (elId in json)
	{
		$(elId).html = json[elId];
	}
}
