		var numMessages = new Array();
		numMessages[0] = "When you feel the tension... You\'ve got to breathe deep and let it go";
		numMessages[1] = "Our bodies are like a car... You \'go-go\'\, one day car stops\!";
		numMessages[2] = "It\'s okay to overextend yourself well beyond the \'red line of life\'... As long as you\'re prepared to make the same trip back over the line to rejuvenate yourself!";
		numMessages[3] = "When you can laugh today at a source of stress from yesterday... You know you will survive!";
		numMessages[4] = "Every once in a while, you\'ve got to \'phttt\' Let it go!";
		numMessages[5] = "When you\'re dealing with a negative individual... Remember that two negatives never ever make a positive!";
		numMessages[6] = "Go out and do one thing that\'s spectacular. If you enjoy it do it again!";
		numMessages[7] = "One of the strongest connections you can make with someone is to share a laugh together!";
		numMessages[8] = "Make yourself happy... Then spread it around!";
		numMessages[9] = "If you believe there is a worthy and wonderful person inside of you waiting to be brought back to life... Recycle yourself!";
		numMessages[10] = "If you swallow the truth without sharing it... You get indigestion!";
		numMessages[11] = "When you do good you forget. When you do bad... You always remember.";
		
		var aNum = Math.round(Math.random()*11);
		var aMessage = numMessages[aNum];
		var strMsg = aMessage;
		var strMsg2 = aMessage;
		 
		var intPos = 0; // holds the integer value for the number of characters in the message
		var strSpacer = "... ..." // contains a string value ... creates a space in the message
		var i = 0;
		
		function ScrollMessage(){
			window.status = strMsg.substring(intPos, strMsg.length)+ strSpacer + strMsg.substring(0, intPos);
			/* uses position to write a piece of the string to the status bar plus the space and then the remain string*/ 
			intPos++;// de-increaments the positon in the string
			if (intPos >= strMsg.length) intPos = 0;// when the value becomes zero..resets string position to length of string
			window.setTimeout("ScrollMessage()",200); // starts a timeout script to repeatedly call function... (recursive funciton)
		}
		
	ScrollMessage();// calls funciton and initiates sequence
	
var mainImage ;
var ImgName ;
var thePath ;

	function swapImage(myImage){
		mainImage = myImage;
		ImgName = myImage + "B";
		thePath = "document.images."+ ImgName;
		var newImage = "images/" + myImage + "_f2.gif";
		document.images[ImgName].src = newImage;
	
	}
	
	function returnImage(){
		document.images[ImgName].src = "images/" + mainImage + ".gif";
		}
		
