
function change_color(div,dir)
{
  if(dir=='out'){
  	document.getElementById(div).style.backgroundColor="#2D2D2D";
  }
  else{
    document.getElementById(div).style.backgroundColor="#474747";
  }
}

