(function()%7B(function()%20%7Bvar%20discoInterval%20%3D%20null%3Bvar%20colors%20%3D%20%5B%22red%22%2C%20%22orange%22%2C%20%22yellow%22%2C%20%22green%22%2C%20%22blue%22%2C%20%22purple%22%2C%20%22pink%22%5D%3Bfunction%20startDisco()%20%7BdiscoInterval%20%3D%20setInterval(function()%20%7Bvar%20color%20%3D%20colors%5BMath.floor(Math.random()%20*%20colors.length)%5D%3Bvar%20elements%20%3D%20document.querySelectorAll(%22*%22)%3Bfor%20(var%20i%20%3D%200%3B%20i%20%3C%20elements.length%3B%20i%2B%2B)%20%7Belements%5Bi%5D.style.backgroundColor%20%3D%20color%3B%7D%7D%2C%20100)%3B%7Dfunction%20stopDisco()%20%7BclearInterval(discoInterval)%3Bvar%20elements%20%3D%20document.querySelectorAll(%22*%22)%3Bfor%20(var%20i%20%3D%200%3B%20i%20%3C%20elements.length%3B%20i%2B%2B)%20%7Belements%5Bi%5D.style.backgroundColor%20%3D%20%22%22%3B%7D%7Dif%20(discoInterval)%20%7BstopDisco()%3B%7D%20else%20%7BstartDisco()%3B%7D%7D)()%7D)()