<!-- Begin image randomizer
		// copyright 2002 eddie phanichkul		
		//function to print randomize images
		function random_image() {
				// number of images to revolve
		var x = Math.round(Math.random() * 7)
		//images array
		images = new Array()
		images[0] = new Image();
		images[0].src = "http://www.morluv.com/gfx/life_title_01.jpg";
		images[1] = new Image();
		images[1].src = "http://www.morluv.com/gfx/life_title_02.jpg";
		images[2] = new Image();
		images[2].src = "http://www.morluv.com/gfx/life_title_03.jpg";
		images[3] = new Image();
		images[3].src = "http://www.morluv.com/gfx/life_title_04.jpg";
		images[4] = new Image();
		images[4].src = "http://www.morluv.com/gfx/life_title_05.jpg";
		images[5] = new Image();
		images[5].src = "http://www.morluv.com/gfx/life_title_06.jpg";
		images[6] = new Image();
		images[6].src = "http://www.morluv.com/gfx/life_title_07.jpg";
		images[7] = new Image();
		images[7].src = "http://www.morluv.com/gfx/life_title_01.jpg";
		document.write("<a href='http://www.morluv.com/home.php'>" + "<img src='" + images[x].src + "' width='828' height='460' border='0'>" + "</a>")
		}
<!-- End Randomizing Script by Eddie -->
		
<!-- Begin Quote variable and integer parser for the randomness effect...
		numq = 12
		day = new Date()
		z = day.getTime()
		y = (z - (parseInt(z/1000,10) * 1000))/10
		x = parseInt(y/100*numq,10) + 1
		<!--creating an array will allow your to easily edit your quotes
		var q = new Array();
		dateTime = day.getDate();
		q[1] = "Between falling and flying lies hesitation. Leap with confidence, and you will find your wings... <br>- unknown";
		q[2] = "It is only with the heart that one can see rightly; what is essential is invisible to the eye <br>- The Little Prince";
		q[3] = "I try to take one day at a time, but sometimes several days attack me at once. <br>- Jennifer Unlimited";
		q[4] = "Life presents itself to me; and I attempt to cooperate with it. <br>- anonymous";
		q[5] = "It is only in the company of Beauty and Acceptance that we find the courage to face the truth. <br>- Jolinda Marshall";
		q[6] = "The spirit of man is inseparable from the Infinite, and can be satisfied with nothing less than the Infinite. <br>- James Allen";
		q[7] = "The fact is that because no one thing or feature of this universe is separable from the whole, the only real You, or Self, is the whole. <br>- Alan Watts";
		q[8] = "That which is essential.... is invisible to the eye. <br>- Antoine de Saint Exupery";
		q[9] = "There is in all visible things...a hidden wholeness. <br>- Thomas Merton";
		q[10] = "What we see depends mainly on what we look for. <br>- John Lubbock";
		q[11] = "Fall in love in such a way that it frees you from any connecting. <br>- Rumi";
		q[12] = "Even after all this time the sun never says to the earth, 'You owe me.' Look what happens with a love like that. It lights the whole sky. <br>- Hafiz";
		
		
		<!--the if statements read the time and works with the randomness maker and outputs the quote.
		if (x == (1))
		quote=(q[1])
		if (x == (2))
		quote=(q[2])
		if (x == (3))
		quote=(q[3])
		if (x == (4))
		quote=(q[4])
		if (x == (5))
		quote=(q[5])
		if (x == (6))
		quote=(q[6])
		if (x == (7))
		quote=(q[7])
		if (x == (8))
		quote=(q[8])
		if (x == (9))
		quote=(q[9])
		if (x == (10))
		quote=(q[10])
		if (x == (11))
		quote=(q[11])
		if (x == (12))
		quote=(q[12])
		
		
		function writeQ() { 
		document.write(quote);
		}
<!-- End Quoting Script by Eddie -->