
//////////////////////// LEFT MENU ////////////////////////////////
function HLLM(el_id, a_id, prefix)
{
  var e=document.getElementById(el_id);
  e.style.backgroundColor = "#4F5971";
  e.style.borderColor="#0095DD";
  var a=document.getElementById(a_id);
  a.style.color="#F7DF91";
} 

function UHLLM(el_id, a_id, prefix)
{
  var e=document.getElementById(el_id);
  e.style.backgroundColor = "#394046";
  e.style.borderColor="#535F73";
  var a=document.getElementById(a_id);
  a.style.color="#F7DF91";
}

////////////////////// LEFT SUBMENU //////////////////////
function HLLS(el_id, a_id, prefix)
{
  var e=document.getElementById(el_id);
  e.style.backgroundColor = "#747E89";
  e.style.borderColor="silver";
  var a=document.getElementById(a_id);
  a.style.color="#F7DF91";
} 

function UHLLS(el_id, a_id, prefix)
{
  var e=document.getElementById(el_id);
  e.style.backgroundColor = "#4F5E73";
  e.style.borderColor="#535F73";
  var a=document.getElementById(a_id);
  a.style.color="#D5CAB3";
}

////////////////////// LEFT SUBMENU sel. //////////////////////
function HLLS_S(el_id, a_id, prefix)
{
  var e=document.getElementById(el_id);
  e.style.backgroundColor = "#747E89";
  e.style.borderColor="white";
  var a=document.getElementById(a_id);
  a.style.color="#F7DF91";
} 

function UHLLS_S(el_id, a_id, prefix)
{
  var e=document.getElementById(el_id);
  e.style.backgroundColor = "#4F5E73";
  e.style.borderColor="gainsboro";
  var a=document.getElementById(a_id);
  a.style.color="#D5CAB3";
}