//
function btnOnOver(theId) {
	var obj = document.getElementById(theId);
	obj.style.color="ff0000";
}
//
function btnOnOut(theId) {
	var obj = document.getElementById(theId);
	obj.style.color="333333";
}
//