// Math that sets the number of the quote to be displayed
var num_of_quotes = 6;
quotes = Math.floor (num_of_quotes * Math.random());
// Database of Quotes

if (quotes==0) {
title=”0?;
body=”test0”;
}
if (quotes==1) {
title=”1?;
body=”test1”;
}
if (quotes==2) {
title=”2?;
body=”test2”;
}
if (quotes==3) {
title=”3?;
body=”test3”;
}
if (quotes==4) {
title=”4?;
body=”test4”;
}
if (quotes==5) {
title=”5?;
body=”test5”;
}


// Outputs the HTML to your web page.
document.write(’<strong>’ + title + ‘</strong><br>’);
document.write('’+ body +'’);