code?
I know about PdMarker, but "afraid" to use it.
function blinkMarker(b_marker) {
var timer = {
time: 0,
now: function(){ return (new Date()).getTime(); },
start: function(){ this.time = this.now(); },
since: function(){ return this.now()-this.time; }