//// pana.js ///

function show(id)
{
  if (!document.getElementById)
    return null;
  hide_all();
  document.getElementById(id).className="show";
}

function hide(id)
{
  if (!document.getElementById)
    return null;
  document.getElementById(id).className="hide";
}

function hide_all()
{
  hide("it");
  hide("en");
}

/// 