function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

quotes = new makeArray(10);
quotes[0] = '<img src="http://www.thebusinessvoice.net/images/quote1.jpg" width=538 height=104 border=0 alt="The Business Voice">';
quotes[1] = '<img src="http://www.thebusinessvoice.net/images/quote2.jpg" width=538 height=104 border=0 alt="The Business Voice">';
quotes[2] = '<img src="http://www.thebusinessvoice.net/images/quote3.jpg" width=538 height=104 border=0 alt="The Business Voice">';
quotes[3] = '<img src="http://www.thebusinessvoice.net/images/quote4.jpg" width=538 height=104 border=0 alt="The Business Voice">';
quotes[4] = '<img src="http://www.thebusinessvoice.net/images/quote5.jpg" width=538 height=104 border=0 alt="The Business Voice">';
quotes[5] = '<img src="http://www.thebusinessvoice.net/images/quote6.jpg" width=538 height=104 border=0 alt="The Business Voice">';
quotes[6] = '<img src="http://www.thebusinessvoice.net/images/quote7.jpg" width=538 height=104 border=0 alt="The Business Voice">';
quotes[7] = '<img src="http://www.thebusinessvoice.net/images/quote6.jpg" width=538 height=104 border=0 alt="The Business Voice">';
quotes[8] = '<img src="http://www.thebusinessvoice.net/images/quote5.jpg" width=538 height=104 border=0 alt="The Business Voice">';
quotes[9] = '<img src="http://www.thebusinessvoice.net/images/quote4.jpg" width=538 height=104 border=0 alt="The Business Voice">';

function rand(n) {

now = new Date();

seed = (0x015a4e35 * (now.getTime() % 0xffffffff)) % 0x7fffffff;
return (seed >> 16) % n;
}