function menuOver(img, globalOverEnabled){ img.src = img.src.replace('_off', '_on'); } function menuOut(img){ img.src = img.src.replace('_on', '_off'); } // Open loginBox function openLoginBox(boxId) { var box = document.getElementById(boxId); box.style.display='block'; }