// JavaScript Document

// * Dependencies * 
// this function requires the following snippet:
// JavaScript/readable_MM_functions/findObj
function setColor(obj, fg, bg)
{
	var objChild = obj.firstChild;
	objChild.style.color= fg;
    obj.style.backgroundColor = bg;
}
