
function setback(x)
{
	switch (x)
	{
	  case 1:
		  document.getElementById("m1").style.backgroundColor="#FFC44A";
		  break;
      case 2:
		  document.getElementById("m2").style.backgroundColor="#FFC44A";
		  break;
	  case 3:
		  document.getElementById("m3").style.backgroundColor="#FFC44A";
		  break;
	  case 4:
		  document.getElementById("m4").style.backgroundColor="#FFC44A";
		  break;
	  case 5:
		  document.getElementById("m5").style.backgroundColor="#FFC44A";
		  break;
	  case 6:
		  document.getElementById("m6").style.backgroundColor="#FFC44A";
		  break;
	  case 7:
		  document.getElementById("m7").style.backgroundColor="#FFC44A";
		  break;
	  case 8:
		  document.getElementById("m8").style.backgroundColor="#FFC44A";
		  break;
	  case 9:
		  document.getElementById("m9").style.backgroundColor="#FFC44A";
		  break;
	  default:
	  //document.getElementById("m10").style.backgroundColor="#0541A4";
	}

}
function resetback(y)
{
	switch (y)
	{
	  case 1:
		  document.getElementById("m1").style.backgroundColor="#0541A4";
		  break;
      case 2:
		  document.getElementById("m2").style.backgroundColor="#0541A4";
		  break;
	  case 3:
		  document.getElementById("m3").style.backgroundColor="#0541A4";
		  break;
	  case 4:
		  document.getElementById("m4").style.backgroundColor="#0541A4";
		  break;
	  case 5:
		  document.getElementById("m5").style.backgroundColor="#0541A4";
		  break;
	  case 6:
		  document.getElementById("m6").style.backgroundColor="#0541A4";
		  break;
	  case 7:
		  document.getElementById("m7").style.backgroundColor="#0541A4";
		  break;
	  case 8:
		  document.getElementById("m8").style.backgroundColor="#0541A4";
		  break;
	  case 9:
		  document.getElementById("m9").style.backgroundColor="#0541A4";
		  break;
	  default:
	  //document.getElementById("m10").style.backgroundColor="#0541A4";
	}
}