// Changing background color of called object (8.4.2010 - not in use)
function chgColor(obj,mode) {
	if(mode) {
		obj.style.background = '#b8b8ca';
		obj.style.color = '#000000';
	}
	else {
		obj.style.background = '#51517d';
		obj.style.color = '#FFFFFF';
	};
};

// ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
