function bulletMove(source){ var t = setTimeout(function run() { bulletT34.style.left = coordT34Left + "px"; coordT34Left += 10; if(coordT34Left >= coordTigerLeft){ bulletT34.remove(); } else setTimeout(run, 100); }, 100); }