<!--
  //  Script:       Random Display
  //  Version:      1.2
  //  Last Updated: May 27, 2008

var rnumb = "";
var myrandomnumber = "";
rnumb += Math.floor(Math.random()*4);
myrandomnumber = rnumb;
switch (myrandomnumber){
	case '0':
	{
		var displaytext = "I lost my job about a year ago. Being over 45 and the primary income provider for my family made my job search even more critical. John provided me with the resources and direction I needed to have more confidence in myself and my future. I am now not only employed but I'm doing what I really enjoy."
		var quotesource = "Larry C."
		var quotehome = "Port Arthur, Texas";
		document.write("<p>"+displaytext+"</p></div><p id=\"name\"><strong>"+quotesource+"</strong><br />"+quotehome+"</p>");
		} break;
	
	case '1':
	{
		var displaytext = "My career and my life hit a very low point. John walked with me and helped me get clear to where I am now more fully in charge of my life. Thank you, John."
		var quotesource = "Janet F."
		var quotehome = "Spokane, Washington";
		document.write("<p>"+displaytext+"</p></div><p id=\"name\"><strong>"+quotesource+"</strong><br />"+quotehome+"</p>");
		} break;
	
	case '2':
	{
		var displaytext = "John helped me become a better person."
		var quotesource = "Ankit P."
		var quotehome = "San Jose, California";
		document.write("<p>"+displaytext+"</p></div><p id=\"name\"><strong>"+quotesource+"</strong><br />"+quotehome+"</p>");
		} break;

	case '3':
	{
		var displaytext = "I found my passion with John's support and guidance. My life now has more balance and meaning."
		var quotesource = "Umberto R."
		var quotehome = "New York, New York";
		document.write("<p>"+displaytext+"</p></div><p id=\"name\"><strong>"+quotesource+"</strong><br />"+quotehome+"</p>");
		} break;
}

