
var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]='What is a lie you tell yourself about money?'

quotes[1]='What is the time in your life that felt the richest? the poorest?'

quotes[2]='What is one thing in your life that would change if you knew you would always have enough?'

quotes[3]='When are you greedy? When are you generous?'

quotes[4]='What is one thing in your life that would change if you knew that everyone everywhere would always have enough?'



var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])
