function shadow(i) {
  var li_list = document.getElementById('topMenu').getElementsByTagName("li");
  var topitem_list= Array();
  l=0;
  for (j=0; j<li_list.length; j++) {
    if ((li_list[j].className=="topitem") || ( li_list[j].className=="topitem selected")) {
      topitem_list[l]=j;
      l++;
    }
  }
  li_list[topitem_list[i]].className="topitem selected";
  //como anulo cuanodo no estoy encima

}

function end_shadow( i )
/*****************************************************************
  `description`
                              25/06/2008 18.10
*****************************************************************/
{
  var li_list = document.getElementById('topMenu').getElementsByTagName("li");
  var topitem_list= Array();
  l=0;
  for (j=0; j<li_list.length; j++) {
    if ((li_list[j].className=="topitem") || ( li_list[j].className=="topitem selected")) {
      topitem_list[l]=j;
      l++;
    }
  }
  li_list[topitem_list[i]].className="topitem";
}  // end_shadow
