           function changeWidth(what) {
               $('menu'+what).height=120;
               $('exp'+what).style.display = "block";
           }

           function originalWidth(what) {
               $('menu'+what).height=100;
               $('exp'+what).style.display = "none";
           }
