var length = 0;

quoteArray = new Array();

quoteArray[0] = "\" You need to express emotion before your body clamps down on it.  If you keep the "+ "emotion the pain or problem will stay with you.  If you express the emotion the pain or problem leaves. "+  "It's your choice! \"";

quoteArray[1] = "\" To hang on to the past is to die a little each day. \"";

quoteArray[2] = "\" What you want to do, and what you can do, is limited only by what you can dream. "+ 
"\"<br /><em>-Mike Melville</em> ";

quoteArray[3] = "\" Yesterday's thought have created your present.  Today's thoughts are creating your "+ 
"future. \" <br /><em>-James Newman</em> ";

quoteArray[4] = "\" If you want to be happy, set a goal that commands your thoughts, liberates your "+ "energy and inspires your hopes. \" <br /><em>-Andrew Carnegie</em> ";

quoteArray[5] = "\" You can have anything you want if you will give up the belief that you can't have "+
"it. \"";

quoteArray[6] = "\" Courage is the commitment to begin something new without any guarantee of success. \"";

quoteArray[7] = "\" If you believe that you can, you are right.  If you believe that you cannot, you "+
"are also right. \" <br /><em>-Henry Ford</em> ";

quoteArray[8] = "\" You are today where you thoughts have brought you.  You will be tomorrow where "+
"your thoughts will take you. \"";

function mouseOver(id){

var idArray = new Array('aboutUsSub','linksSub','clientsSub');

if(id!=''){


	for(var i=0;i<=idArray.length-1;i++){
	  document.getElementById(idArray[i]).style.display='none';
	}
	  document.getElementById(id).style.display='block';
 }
}

function displayQuote(){

var randNum=Math.floor(Math.random()*quoteArray.length);

document.getElementById('quote').innerHTML = quoteArray[randNum];
}