function changeColor(image) { if (image.src.indexOf("circleRed.png")>-1) { image.src = "circleBlue.png"; } else { image.src = "circleRed.png"; } }