//og
//globalCompanies = document.getElementById("globalCompaniesList");
//selected = globalCompanies.firstChild.nodeType == 3 ? globalCompanies.firstChild.nextSibling : globalCompanies.firstChild;
//function showSelection(index) 
//{
//    selected.style.display = "none";
//    
//    if (globalCompanies.firstChild.nodeType == 3) 
//    {
//       selected = globalCompanies.childNodes[index+2];
//    } 
//   else 
//    {
//       selected = globalCompanies.childNodes[index];
//    }
//    
//    selected.style.display = "block";
//}

//updated
//var mylist=document.getElementById("globalCompaniesList")
//var listitems= mylist.getElementsByTagName("li")
//for (i=0; i<listitems.length; i++)
//{
//    alert(i);
    //manipulate each li element
//}
//function showSelection(index) 
//{
//    listitems[0].style.display = "none";
//    listitems[1].style.display = "none";
//    listitems[2].style.display = "none";
//    
//    listitems[index].style.display = "block";
//}




//new
var mylist = document.getElementById("globalCompaniesList");
var listitems = mylist.getElementsByTagName("li");

function showSelection(index) 
{
    for (i=0; i<listitems.length; i++)
    {
        listitems[i].style.display = "none";
    }
   
    listitems[index].style.display = "block";
    
}




