               function over(what) {
                    if(document.getElementById(what).style.left == "5px") {
                         document.getElementById(what).style.left = "0px";
                    } else {
                         document.getElementById(what).style.left = "5px";
                    }
               }
