/* This JavaScript (Random Quotes) developed by Scott Clark

The Source is available at http://www.clarksco.com/blog/

Copyright 2005 Clark Consulting */



var num_of_quotes = 10;

quotes = Math.floor (num_of_quotes * Math.random());



if (quotes==0) {

body="&ldquo;nice crumb shot….&rdquo;";

}



if (quotes==1) {

body="&ldquo;star motif atop….&rdquo;";

}



if (quotes==2) {

body="&ldquo;red plastic bagless inner….&rdquo;";

}



if (quotes==3) {

body="&ldquo;blocked arteries….&rdquo;";

}



if (quotes==4) {

body="&ldquo;acceptable session pie….&rdquo;";

}



if (quotes==5) {

body="&ldquo;bulbous dome….&rdquo;";

}



if (quotes==6) {

body="&ldquo;loose fruits….&rdquo;";

}



if (quotes==7) {

body="&ldquo;binding gunk….&rdquo;";

}



if (quotes==8) {

body="&ldquo;lid trauma….&rdquo;";

}



if (quotes==9) {

body="&ldquo;a solid chew....&rdquo;";

}



document.write(''+ body +'<br><br>');

//document.write('<strong>' + title + '</strong>');




