function addImageToTableByClass(className, imagePath) {
    // expects that dojo is a go-go
    // and that wrapItUp has already been run
    var thisList = dojo.query('table.' + className + ' > tbody > tr > td.dst');
	thisList.forEach(
		function(node, index, nodeList) {
			node.innerHTML = '<img src="' + imagePath + '">';
		}
	);
}

