Can anyone tell me why my circles transition to green but then do not transition to blue? I don't know if it's relevant but this is D3 on top of polymaps.
marker.append("svg:circle")
.attr("r", 4.5)
.transition()
.delay(2000)
.style("fill", "green")
.transition()
.delay(2000)
.style("fill", "blue")
;