// JavaScript Document
var theText9 = "leic ne cra";
function nextSize9(i,textLength) {
return (18*Math.abs( Math.sin(i/(textLength/3.14))));
}
function sizeCycle9(text,dis) {
bof = ""
for(i = text.length; i > (-1) ; i--) {
size = parseInt(nextSize9(i +dis,text.length));
bof += "<font color='"+00*00*00+"' style='font-size: "+ size +"pt'>" +text.substring(i,i+1)+ "</font>";
}
document.getElementById("theDiv9").innerHTML = bof;
}
function doWave9(n) {
sizeCycle9(theText9,n)
if (n > theText9.length) {n=0}
setTimeout("doWave9(" + (n+1) + ")", 150);
}