<!--
/*
-----------------------------------------------
Random Quote Generator
Name:		Creekside Equicenter 2009
Author:	Michael Prout
URL:		www.creeksidedesign.com
Date:		1/31/2009
-----------------------------------------------
*/
a = 35 // a=
var slump = Math.random();
var BannerNo = Math.round(slump * (a-1))+1;

function create() {
	this.string = ''
}

b = new Array()
for(var i=1; i<=a; i++) { b[i] = new create() }

b[1].string    = "You accessorize your hairstyle with pieces of hay."
b[2].string    = "You examine every piece of rope or twine for its halter potential."
b[3].string    = "You think a great vacation is spending a long weekend in front of a horse trailer by a dusty arena."
b[4].string    = "You take your children's temperature and think that 102 degrees F is normal."
b[5].string    = "You spend more money on horseshoes than your own shoes."
b[6].string    = "You always keep carrots, apples and sugar cubes in your refrigerator."
b[7].string    = "You prefer the small of a stable to cologne."
b[8].string    = "You sleep with your boots on and count horse to fall asleep."
b[9].string    = "Your laugh begins to sound like a horse whinny."
b[10].string    = "Instead of giving someone directions to turn left or right, you tell them to gee or haw."
b[11].string    = "You still have your childhood horse statues in your bedroom."
b[12].string    = "Your favorite outfit is made of leather and includes whips and spurs."
b[13].string    = "You talk to your horse more than you talk to your spouse."
b[14].string    = "You spend more time at the feed store than the grocery store."
b[15].string    = "You can be found at Creekside Equicenter having fun with horses and not at home."
b[16].string    = "Your horse gets shoes more often than you do."
b[17].string    = "You're trying to get around a slow walking person and instead of saying 'Excuse me,' you cluck at them instead."
b[18].string    = "You say 'Whoa' to the dog."
b[19].string    = "You pull change from your pocket at work, and hay falls all over."
b[20].string    = "Books and movies are ruined for you if horsemanship references are incorrect."
b[21].string    = "You actually get to a point where flies don't bother you so much."
b[22].string    = "Your mother, who has no grandchildren, gets cards addressed to Grandma, signed by the horses."
b[23].string    = "You kick the car floor and cluck to make it go."
b[24].string    = "Your friends have to move your saddle or horse blanket out of the seat every time they get in your car."
b[25].string    = "Your non-horsey friend gives you a funny look after glancing into the back seat of your car, and you realize he's noticed your whips and spurs."
b[26].string    = "Your sole purpose in buying five pounds of coffee is to use the can as a grain scoop."
b[27].string    = "You stop channel surfing at Budweiser Clydesdale commercials."
b[28].string    = "You have more pictures of your horses in your office than you have of your family."
b[29].string    = "Your horse seems the right choice when you need to talk something out with someone."
b[30].string    = "You can find your boots in the dark by the aroma."
b[31].string    = "You get a little whiff of the smell of leather and breathe deeper to get the full impact. "
b[32].string    = "You drive by ANY field ANYWHERE and look very hard for horses."
b[33].string    = "You know more about equine nutrition than human nutrition."
b[34].string    = "You don't even want to think about how your car would be paid for, your mortgage would be much smaller, and you might have some savings if you didn't have horses."
b[35].string    = "You're totally grossed out by human hair in the sink or tub, but don't mind horse hair in your washer, on your clothes, in your food. "

document.write("<br><table width='100%' border='0' cellspacing='0' cellpadding='3' bgcolor='#D8CA7A'><tr><td align='left' valign='top'><strong>You know you're a Horse Lover when...<br></strong>");
document.write(b[BannerNo].string+'</td></tr></table>');

//-->