Random Quotes Box
The Code
<style type="text/css">#randomQuote { background: #000000 url(); border: #333333 1px solid; width:200px; text-align:left;}.hide {display:none;}</style><div id="quotebx" align="center"><div id="randomQuote"></div><!-- ****************************** Add your random quotes below. <div id="quote#" class="hide"> QUOTE HERE </div>****************************** --><div id="quote1" class="hide"> "Once you can accept the universe as matter expanding into nothing that is something, wearing stripes with plaid comes easy."<br> ~Albert Einstein</div><div id="quote2" class="hide"> "The main reason Santa is so jolly is because he knows where all the bad girls live."<br> ~George Carlin </div><div id="quote3" class="hide"> "I busted a mirror and got seven years bad luck, but my lawyer thinks he can get me five."<br> ~Steven Wright</div><div id="quote4" class="hide"> Homer: Are you saying you're never going to eat any animal again? What about bacon?<br> Lisa: No.<br> Homer: Ham?<br> Lisa: No.<br> Homer: Pork chops?<br> Lisa: Dad, those all come from the same animal.<br> Homer: Heh heh heh. Ooh, yeah, right, Lisa. A wonderful, magical animal.<br></div><div id="quote5" class="hide"> <img src="http://i201.photobucket.com/albums/aa236/Mottie1/forums/lecturer.gif" align="right"> A linguistics professor was lecturing to his English class one day.<br> <br> "In English," he said, "A double negative forms a positive. In some languages, though, such as Russian, a double negative is still a negative.<br> <br> However, there is no language wherein a double positive can form a negative."<br> <br> A voice from the back of the room piped up, "Yeah, right."<br></div><div id="quote6" class="hide"> <img src="http://i201.photobucket.com/albums/aa236/Mottie1/forums/05.jpg"></div><script type="text/javascript">// ********************************// Don't change anything below this line// ********************************var quotes = ($("#quotebx").find("div").length) - 1;var rnd = "#quote" + Math.floor((Math.random()*(quotes))+1);$("#randomQuote").html($(rnd).html());</script></div>
Customizing