// JavaScript Document
var theText7 = "éuqsam uej";
function nextSize7(i,textLength) {
return (18*Math.abs( Math.sin(i/(textLength/3.14))));
}
function sizeCycle7(text,dis) {
bof = ""
for(i = text.length; i > (-1) ; i--) {
size = parseInt(nextSize7(i +dis,text.length));
bof += "<font color='"+00*00*00+"' style='font-size: "+ size +"pt'>" +text.substring(i,i+1)+ "</font>";
}
document.getElementById("theDiv7").innerHTML = bof;
}
function doWave7(n) {
sizeCycle7(theText7,n)
if (n > theText7.length) {n=0}
setTimeout("doWave7(" + (n+1) + ")", 150);
}