// JavaScript Document
var theText11 = "rueohc";
function nextSize11(i,textLength) {
return (18*Math.abs( Math.sin(i/(textLength/3.14))));
}
function sizeCycle11(text,dis) {
bof = ""
for(i = text.length; i > (-1) ; i--) {
size = parseInt(nextSize11(i +dis,text.length));
bof += "<font color='"+00*00*00+"' style='font-size: "+ size +"pt'>" +text.substring(i,i+1)+ "</font>";
}
document.getElementById("theDiv11").innerHTML = bof;
}
function doWave11(n) {
sizeCycle11(theText11,n)
if (n > theText11.length) {n=0}
setTimeout("doWave11(" + (n+1) + ")", 150);
}