<!--
var delay=250;
var nextm=0;

var msg=new Array (
   'Recording thru effects, block processing, preset management?',
	'Waveform display, export, import, cut, split, scrubbing?',
	'6-band graphic equalizer, 3D spectrum analysis, correlation meter?',
	'Sound Laundry&#153 version 2.5 has it all!',
   'Download the demo now!'
);

var cols=new Array("ffffff", "d0d0d0", "b0b0b0", "909090", "707070", "505050", "303030", "101010", "050505");

function start_ticker() {
        do_ticker(msg[0], 0, 1);
}

function do_ticker(text, col, dir) {
        var out='<a href="index_products.htm" target="_top"><font face="Arial, Helvetica" style="font-size:12pt; text-decoration:none;"><font color="#'+cols[col]+'">'+text+'</font></font></a>';

        if(navigator.appName=="Netscape")
                with(document.ticker.document) {
                        open(); write(out); close();
                }
        else    ticker.innerHTML=out;
        col+=dir;
        if(col>=cols.length-1) dir=-dir;
        else if(col<=0) {
                if(++nextm>=msg.length) nextm=0;
                text=msg[nextm];
                dir=-dir;
        }

        setTimeout('do_ticker("'+text+'",'+col+','+dir+')', delay);
}
// -->