function fall() {
    move(1,2,-9,0,0,0.3,5,0);
    move(2,6,-5,0,0,0.5,5,0);
    move(3,7,-6,0,0,0.5,5,0);
    move(4,2,-5,0,0,0.6,3,0);
    move(5,4,-5,0,0,0.5,6,0);
}

function move(pla,cnt,spd,loc,pre,bnd,acc,wid) {
    if (( loc != max ) || ( pre != max )) {
        pre = loc;
        wid += acc;
        if ( loc + spd >= max ) {
            spd = Math.floor( spd * bnd ) * -1;
            loc = max; }
        else {
            loc += spd;
            spd++; }
        if     ( pla == 1 ) {
            document.all.C1.innerHTML = '<SPAN STYLE="position:relative;top:'+loc+'px;left:'+wid+'">'+cnt+'</SPAN>'; }
        if     ( pla == 2 ) {
            document.all.C2.innerHTML = '<SPAN STYLE="position:relative;top:'+loc+'px;left:'+wid+'">'+cnt+'</SPAN>'; }
        if     ( pla == 3 ) {
            document.all.C3.innerHTML = '<SPAN STYLE="position:relative;top:'+loc+'px;left:'+wid+'">'+cnt+'</SPAN>'; }
        if     ( pla == 4 ) {
            document.all.C4.innerHTML = '<SPAN STYLE="position:relative;top:'+loc+'px;left:'+wid+'">'+cnt+'</SPAN>'; }
        if     ( pla == 5 ) {
            document.all.C5.innerHTML = '<SPAN STYLE="position:relative;top:'+loc+'px;left:'+wid+'">'+cnt+'</SPAN>'; }
        setTimeout("move("+pla+","+cnt+","+spd+","+loc+","+pre+","+bnd+","+acc+","+wid+")", 25); }
}

document.write('<SPAN ID="C1"></SPAN>');
document.write('<SPAN ID="C2"></SPAN>');
document.write('<SPAN ID="C3"></SPAN>');
document.write('<SPAN ID="C4"></SPAN>');
document.write('<SPAN ID="C5"></SPAN>');
max = 100;
document.all.C1.innerHTML = '<A HREF="#" onMouseover="fall(); return false;">26724</A>';


