function showSpkrInfo(sid) {
	elID = 's' + sid + '_c';

	grayOut(true, {'zindex':'50', 'opacity':'40', 'bgcolor':'#111111'});
	raiseEl(elID);
	showEl(elID);
}

function hideSpkrInfo(sid) {
	elID = 's' + sid + '_c';

	grayOut(false);
	lowerEl(elID);
	hideEl(elID);
}