var theList = new Array();
	theList[0] = "Open closed minds";
	theList[1] = "Experience differences";
	theList[2] = "Become more aware";
	theList[3] = "Always create balance";
	theList[4] = "Work passionately";
	
function getWisdom(num) {
	if(num) {
		//alert("num specified");
		return(theList[num]);
	}
	else
		return(theList[getRandomNumber(0, theList.length-1)]);
}
function getRandomNumber(low, high) {
	return( low+(Math.round(high*(Math.random()))) );
}