﻿function getById(json, id) {
	for(var i=0;i<json.length;i++) {
		if (json[i].Id == id) {
			return json[i];
		}
	}
}
