
function onSelectA(obj){
	obj.style.color='#ffffff';	
	obj.style.backgroundColor='#000000';
}

function offSelectA(obj){
	obj.style.color='#000000';
	obj.style.backgroundColor='#ffffff';
}