    function expand(id)
    {
        for(var i=1; i<=2; i++)
        {
            var listid="m"+i;
            var hrefid="a"+i;
            
            if(i==id)
            {
                document.getElementById(hrefid).style.color = "#ff8000";
                document.getElementById(listid).style.display = "block";
            }
            else
            {
                document.getElementById(hrefid).style.color = "#0176c1";
                document.getElementById(listid).style.display = "none";
            }
        }
    }
