
rnd.today=new Date();
rnd.seed=rnd.today.getTime();
function rnd() { rnd.seed = (rnd.seed*9301+49297) % 233280; 
return rnd.seed/(233280.0);}; 

function rand(number) { 
return Math.ceil(rnd()*number);
};


phrase = new Array

phrase[0] = "<img src='/images/phrase1.gif' align=right>";

phrase[1] = "<img src='/images/phrase1.gif' align=right>";

phrase[2] = "<img src='/images/phrase2.gif' align=right>";

phrase[3] = "<img src='/images/phrase3.gif' align=right>";

phrase[4] = "<img src='/images/phrase4.gif' align=right>";

phrase[5] = "<img src='/images/phrase5.gif' align=right>";

phrase[6] = "<img src='/images/phrase7.gif' align=right>";

var quote = phrase[rand(6)]
document.write(quote);

//  End -->

