var ShowString = "                            "
			   + "Quotes from Mother Teresa ..... "
			   + ".... Life is an opportunity, benefit from it. "
			   + ".... Life is beauty, admire it. "
			   + ".... Life is bliss, taste it. "
			   + ".... Life is a dream, realize it. "
			   + ".... Life is a challenge, meet it. "
			   + ".... Life is a duty, complete it. "
			   + ".... Life is a game, play it. "
			   + ".... Life is a promise, fulfill it. "
			   + ".... Life is sorrow, overcome it. "
			   + ".... Life is a song, sing it. "
			   + ".... Life is a struggle, accept it. "
			   + ".... Life is a tragedy, confront it. "
			   + ".... Life is luck, make it. "
			   + ".... Life is too precious, do not destroy it. "
			   + ".... Life is an adventure, dare it. "
			   + ".... Life is life, fight for it. ";
			   
var ShowWidth  = 100;
var ShowHead   = 0;
var ShowTail   = ShowWidth;
var ShowLength = ShowString.length; 

function Marquee () {
	var DisplayString;
	
	if (ShowHead < ShowTail) 
		DisplayString = ShowString.substring(ShowHead, ShowTail);
	else
		DisplayString = ShowString.substring(ShowHead, ShowLength) + ShowString.substring(0, ShowTail);
		
	ShowHead = (ShowHead + 1) % ShowLength;
	ShowTail = (ShowTail + 1) % ShowLength;
	
	window.status = DisplayString;
	
	var TimerID = setTimeout("Marquee()", 100);
}

