/* 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 = 4;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
body="GET IN THE SHAPE OF YOUR LIFE";
}

if (quotes==1) {
body="GET FIT, LIVE LONGER";
}

if (quotes==2) {
body="LOSE WEIGHT, FEEL GREAT";
}

if (quotes==3) {
body="TONED &amp LEAN, A NEW YOU";
}

document.write('<div style="float: left; font-weight: bold; font-size: 18px;"><b>');
document.write(''+ body +'');
document.write('</b></div>');

