function openMenuLink( el )
{
  window.location = el.firstChild.href;
  return false;
}
function openListLink( el )
{
  if( el.childNodes[1].firstChild !==  'undefined')
    window.location.href = el.childNodes[1].firstChild.href;
  return false;
}