<!--

function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

Kazaa = new makeArray(9);
Kazaa[0] = "Search for music, videos, images, & software.  Just type in your keyword(s).";
Kazaa[1] = "Search for music, videos, images, & software.  Just type in your keyword(s).";
Kazaa[2] = "Search for music, videos, images, & software.  Just type in your keyword(s).";
Kazaa[3] = "Search for music, videos, images, & software.  Just type in your keyword(s).";
Kazaa[4] = "Search for music, videos, images, & software.  Just type in your keyword(s).";
Kazaa[5] = "Search for music, videos, images, & software.  Just type in your keyword(s).";
Kazaa[6] = "Search for music, videos, images, & software.  Just type in your keyword(s).";
Kazaa[7] = "Search for music, videos, images, & software.  Just type in your keyword(s).";
Kazaa[8] = "Search for music, videos, images, & software.  Just type in your keyword(s).";

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
        
var now = new Date()
var seed = now.getTime() % 0xffffffff

//-->