for (i = 0.0; i <= 50.0; i = i + 0.5)
{
x = i * 2;
document.write("<div style=\"position: absolute; left: " + (300 + x) + "px; top: " + (13 + (10 * Math.sin(i))) + "\">.</div>")
}
