
//store the quotes in arrays

homequote = new Array(0);

homequote[0] = "<img src='/images/quotes/home_quote1.gif' alt='Cancer strikes nearly one in every two men and more than one in every three women.' width='200' height='164'>";

//calculate a random index

index = Math.floor(Math.random() * homequote.length);

//display the quotation

document.write(homequote[index]);

//done
