<!-- SPONSOR ROTATION 

//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays

quote = new Array(4);

quote[0] = "<h2>Success</h2><p><strong>&#8220;You&#8217;ve got to jump off the cliff all the time and build your wings on the way down.&#8221;</strong><br />&#8212;Ray Bradbury, author of The Martian Chronicles <a href='quotations.htm'>more quotes</a></p>";
quote[1] = "<h2>Life</h2><p><strong>&#8220;What does not kill me, serves to make me stronger&#8221;</strong><br />&#8212;Friedrich Nietzsche, German philosopher<br /><a href='quotations.htm'>more quotes</a></p>";
quote[2] = "<h2>Vision</h2><p><strong>&#8220;Walk as far as you can see, and you will see more.&#8221;</strong><br />&#8212;Native American wisdom<br /><a href='quotations.htm'>more quotes</a></p>";
quote[3] = "<h2>Failure</h2><p><strong>Failure is &#8220;not whether you have a problem, but whether it’s the same problem you had a year ago.&#8221;</strong><br />&#8212;John Foster Dulles<br /><a href='quotations.htm'>more quotes</a></p>";

index = Math.floor(Math.random() * quote.length);

//done

// -->
