function RunningFeet(){

	//Running Feet Stuff
	
		
	//Build the Array
	var aRunningFeet = new Array();
aRunningFeet[0] = "	Happiness is like a kiss - in order to get any good out of it you have to give it to somebody else. - Anonymous	";
aRunningFeet[1] = "	A kiss can be a comma, a question mark, or an exclamation point. - Mistinquett  (Jeanne Marie Bourgeois)	";
aRunningFeet[2] = "	The sound of a kiss is not so loud as that of a cannon, but its echo lasts a great deal longer. - Oliver Wendell Holmes	";
aRunningFeet[3] = "	If you are ever in doubt as to whether or not you should kiss a pretty girl, always give her the benefit of the doubt. - Thomas Carlyle	";
aRunningFeet[4] = "	It is quite a delight to receive a well-intentioned and appropriate kiss. Please fell free to make the gesture. - Eleanor Ironside	";
aRunningFeet[5] = "	Stolen sweets are always sweeter. Stolen kisses much completer. - Leigh Hunt	";
aRunningFeet[6] = "	'Kiss' rhymes to 'bliss' in fact as well as verse. - Lord Byron	";
aRunningFeet[7] = "	If you finally decide to let a man kiss you, put your whole heart and soul into it. No man likes to kiss a rock. - Lady Chesterfield	";
aRunningFeet[8] = "	How delicious is the winning of a kiss at love's beginning. - Thomas Campbell	";
aRunningFeet[9] = "	Kissing is a means of getting two people so close together that they can't see anything wrong with each other. - Gene Yasenak	";
aRunningFeet[10] = "	To a woman the first kiss is the end of the beginning; to a man it is the beginning of the end. - Helen Rowland	";
aRunningFeet[11] = "	When soul meets soul on lovers' lips. - Percy Bysshe Shelley	";
aRunningFeet[12] = "	But I wasn't kissing her. I was whispering in her mouth. - Chico Marx	";
aRunningFeet[13] = "	He kisses me and now I am someone else; someone else in the pulse that repeats the pulse of my own veins and in the breath that mingles with my breath. - Gabriela Mistral	";
aRunningFeet[14] = "	Don't wait to know her better to kiss her; kiss her and you'll know her better. - Anonymous	";
aRunningFeet[15] = "	....let us kiss each other's eyes, and laugh our love away. - William Butler Yeats	";
aRunningFeet[16] = "	Some men kiss and do not tell, some kiss and tell. - Susan Langstaff Mitchell	";
aRunningFeet[17] = "	A kiss is a secret told to the mouth instead of the ear. - Edmond Rostand	";
aRunningFeet[18] = "	We are all mortal until the first kiss and the second glass of wine. - Eduardo Galeano	";
aRunningFeet[19] = "	My first kiss can be summed up in one word: unsuccessful. - Huey Lewis	";
aRunningFeet[20] = "	Take me by the earlaps and match my little lips to your little lips. - Plautus	";
aRunningFeet[21] = "	Everyone wants a hug and kiss. It translates into any language. - Georgette Mosbacher	";
aRunningFeet[22] = "	Kisses may not spread germs, but they certainly lower resistance. - Louise Erickson	";
aRunningFeet[23] = "	Never a lip is curved with pain. That can't be kissed into smiles again. - Bret Harle	";
aRunningFeet[24] = "	Kissing power is stronger than will power. - Abigail Van Buren	";
aRunningFeet[25] = "	Kisses are like confidences - one follows the other. - Denis Diderol	";
aRunningFeet[26] = "	Kisses, a thing of no use to one, but prized by two. - Robert Zwickey	";
aRunningFeet[27] = "	Why did you keep me on tiptoe so long if you weren't going to kiss me? - Tom Mathew	";
aRunningFeet[28] = "	A kiss can be even deadlier if you mean it. - from the film - Batman Returns	";
aRunningFeet[29] = "	Lovers can live on kisses and cool water. - Old French Saying	";
aRunningFeet[30] = "	There are all sorts of kisses...from the sticky confection to the kiss of death.  Of them all, the kiss of an actress is the most unnerving, how can we tell if she means it or if she's just practicing? - Ruth Gordon	";
aRunningFeet[31] = "	My plan was to kiss her with every lip on my face. - from the film  - Dead Men Don't Wear Plaid	";
aRunningFeet[32] = "	It takes a lot of experience for a girl to kiss like a beginner. - from the - Ladies Home Journal, 1948	";
aRunningFeet[33] = "	Giving kisses, stealing kisses, Is the world's chief occupation. - Ludwig Christoph Heinrich Holty	";
aRunningFeet[34] = "	Kisses are the messengers of love. - Danish Proverb	";
aRunningFeet[35] = "	Wherever one wants to be kissed. - Coco Chanel. on where to wear perfume.	";
aRunningFeet[36] = "	That farewell kiss which resembled greeting, that last glance of love which becomes the sharpest pang of sorrow. - George Eliot	";
aRunningFeet[37] = "	You must remember this; a kiss is still a kiss. A sigh is just a sigh: - Herman Hupfeld.	";
	//Pick the random running feet
	var randomFeet = aRunningFeet[Math.round(Math.random() * 37)];
	document.write(randomFeet)
	
	//Write the text depending on which browser
	/*
	if(document.all) {
		document.all.rf.innerText = randomFeet;
	}
	else{
		if(navigator.appVersion.search('4.') != -1){
		document.write(randomFeet);
		//	document.layers["rf"].document.open();
		//	document.layers["rf"].document.write(randomFeet);
		//	document.layers["rf"].document.close();
		}
		else{
			document.getElementById("rf").innerHTML = '<font face="arial" size="2" color="black">' + randomFeet + '</font>';
		}
	}
	*/
}

