function tochka1() { $("#dialog span.tochka1").fadeIn(500).delay(500).fadeOut(500);
setTimeout(tochka2, 500)
};
function tochka2() {$("#dialog span.tochka2").fadeIn(500).delay(500).fadeOut(500);
setTimeout(tochka3, 500)
};
function tochka3() {$("#dialog span.tochka3").fadeIn(500).delay(500).fadeOut(500);
setTimeout(tochka1, 1500)
};
tochka1()
Думаю не стоит упоминания, что это жуткая мерзость и так делать не следует.