
var Belief = new Array() 

Belief[0] = "thoughts become things"
Belief[1] = "we are responsible for our choices"
Belief[2] = "with responsibility comes liberation"
Belief[3] = "every day contains a miracle"
Belief[4] = "now is the only moment we can act"
Belief[5] = "we have all the wisdom we will ever need"
Belief[6] = "we are interconnected in ways we cannot begin to imagine"
Belief[7] = "if we pay attention to relationships, we pay attention to everything"
Belief[8] = "visions are uncovered, not manufactured"
Belief[9] = "work and play are indivisible"
Belief[10] = "you can’t change people, but people can change themselves"
Belief[11] = "through change, we flourish"


var Q  =  Belief.length;
var whichBelief = Math.round(Math.random()*(Q-1));
function showBelief(){document.write("<a href='../philosophy/index.shtml'>We believe that "); document.write(Belief[whichBelief]); document.write("</a>")}
showBelief();
