function flasher(){


var swap = new Array(3)
swap[0]="#90B0A8"
swap[1]="#4EAA2D"
swap[2]="#E8AF22"
swap[3]="#3E73BA"
swap[4]="#D01816"
swap[5]="#E0791D"
swap[6]="purple"
swap[7]="#E4CC34"
swap[8]="#72ACEB"

var i =Math.floor(Math.random() * 8) + 1


document.flash.button1.style.backgroundColor=swap[i]
document.flash.button1.style.color="white"
Stop=setTimeout("flasher()",200)
}
function stopFlash(){
clearTimeout(Stop)
}





