/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */




var avar = new Array("more fun than being smacked in the head with a mackerel",
				 "the most fun you can have with a wet bottom",
				 "more fun than a truck load of monkeys",
				 "more fun than canoeing the bellinger... oh wait..",
				 "more fun than farting in the bath ",
				 "more fun than sliced bread ",
				 "Almost the most fun you can have with/without laughing ",
				 "Ingredients: Your Guide, river, moon, you! (Served with Champagne!)",
				 "funner than a fun thing at a fun convention",
				 "I thought my life was fun until I had a Bellingen Canoe Adventure",
				 "It's an adventure in a canoe on the Bellinger... its a Bellingen Canoe Adventure",
				 "Fantastic Fun Adventures for all the family ",
				 "Fun cocktail ingredients: Canoe, Bellingen your mates and YOU! ",
				 "Fun Fun Fun in the Sun Sun Sun* (*excluding moonlight tours)",
				 "Swimmers preferred, floaters essential! ",
				 "I had a Bellingen Canoe Adventure, now people find me strangely attractive "
				 );

var num_of_quotes = avar.length;

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

justOne = avar[quotes];



//document.write('<div align=left>');
//document.write('<strong>' + title + '</strong><br>');
if (justOne.length > 65) {
	document.write('<div class="smallest">');
	document.write(''+ justOne +'');
	document.write('</div>');
}
else if (justOne.length > 50) {
	document.write('<div class="smaller">');
	document.write(''+ justOne +'');
	document.write('</div>');
	}

else {
	document.write(''+ justOne +'');
//document.write('</div>');
}

