
function change(el)
{
  el.className = 'box active';

  el.onmouseout = function(){ el.className = 'box passive'; }
}



