// JavaScript Document
function color_move_out(a_Id) 
{ 
if(a_Id.id=="a_id1"){
	a_Id.style.color ="#63BA42";
	document.getElementById('a_id2').style.color ="#0086CE";
	document.getElementById('a_id3').style.color ="#0086CE";
	document.getElementById('a_id4').style.color ="#0086CE";
}
if(a_Id.id=="a_id2"){
	a_Id.style.color ="#63BA42";
	document.getElementById('a_id1').style.color ="#0086CE";
	document.getElementById('a_id3').style.color ="#0086CE";
	document.getElementById('a_id4').style.color ="#0086CE";
}
if(a_Id.id=="a_id3"){
	a_Id.style.color ="#63BA42";
	document.getElementById('a_id2').style.color ="#0086CE";
	document.getElementById('a_id1').style.color ="#0086CE";
	document.getElementById('a_id4').style.color ="#0086CE";
}
if(a_Id.id=="a_id4"){
	a_Id.style.color ="#63BA42";
	document.getElementById('a_id2').style.color ="#0086CE";
	document.getElementById('a_id3').style.color ="#0086CE";
	document.getElementById('a_id1').style.color ="#0086CE";
}
} 