function colorChange(elem) {
elem.style.backgroundColor = "#A9B5D6";
elem.style.color = elem.getAttribute('bgColor');
}

function colorBack(elem) {
if (elem.id == 'selPoint' || elem.id == 'selSub') ; else {
if (elem.id == 'menuPoint') elem.style.backgroundColor = "#6183AE";
else elem.style.backgroundColor = "#6699CC";
}
}
