//mutually exclusive divs -- when one shows, hide the previously showing one
//uses CssUtils.js -- be sure to include that library also

var meDiv_currDiv;

function meDiv_showMe(divObj) {
	if (meDiv_currDiv) {
meDiv_currDiv.style.display = 'none';
		CssUtils_hideDiv(meDiv_currDiv);
	}

divObj.style.display = 'inline';
	CssUtils_showDiv(divObj);

	meDiv_currDiv = divObj;
}
