// JavaScript Document
     // this functionn is used for butons where are changing pictures when I show on a button
     function ButtonChange(name, img)
     {
          var path = 'images/design/buttons/';
          path = path + img;
          document.images[name].src = path;
     }      