<!--
//you may add your image file or text below
var item=new Array()
item[0]="<font face=arial size=2>I tried, but it didn't work,' is a lot better than 'I wish I'd tried.' -- Larry Wall and Kathleen Russell</font>"
item[1]="<font face=arial size=2>'Well done!' is better than 'Well said!' -- Larry Wall and Kathleen Russell</font>"
item[2]="<font face=arial size=2>A human body can kill germs and play a piano and digest food and eliminate toxins and think philosophy and make a baby all at the same time. -- Deepak Chopra</font>"
item[3]="<font face=arial size=2>A pacifist is different from a passivist -- one lives in peace, the other, in pieces. -- Eileen Elias Freeman</font>"
item[4]="<font face=arial size=2>A person in pure awareness is truly free, and can have the support of everything that he or she desires.&quot; -- Deepak Chopra</font>"
item[5]="<font face=arial size=2>A quitter never wins. A winner never quits. -- Larry Wall and Kathleen Russell</font>"
item[6]="<font face=arial size=2>Acceptance is essential because a lot of effort is wasted whenever you put up resistance. -- Deepak Chopra</font>"
item[7]="<font face=arial size=2>After all, what is God? An eternal Child playing an eternal game in the eternal garden. -- Sri Aurobindo</font>"
item[8]="<font face=arial size=2>After you've worked hard to get what you want, take the time to enjoy it. -- H. Jackson Brown, Jr.</font>"
item[9]="<font face=arial size=2>Alertness in the present moment is the fertilizer that keeps fulfillment of desire growing.&quot; -- Deepak Chopra</font>"
item[10]="<font face=arial size=2>All good things move around. They don't like to be locked in one place. -- Deepak Chopra</font>"
item[11]="<font face=arial size=2>All life is an experiment. The more experiments you make, the better. -- Deepak Chopra</font>"
item[12]="<font face=arial size=2>Allow the gifts of spirit to come to you. -- Deepak Chopra</font>"
item[13]="<font face=arial size=2>All life is an experiment. The more experiments you make, the better. -- Deepak Chopra</font>"
item[14]="<font face=arial size=2>Altruism and compassion are the natural results of being detached, as is service to others. -- Deepak Chopra</font>"
item[15]="<font face=arial size=2>Always have something beautiful in sight, even if it's just a daisy in a jelly glass. -- H. Jackson Brown, Jr.</font>"
item[16]="<font face=arial size=2>Angels are principally the guardian of our spirits. Their function is not to do our work for us, but to help us do it ourselves, by God's grace. -- Eileen Elias Freeman</font>"
item[17]="<font face=arial size=2>Anything that happens to us reflects a loving guardianship of our well-being. -- Deepak Chopra</font>"
item[18]="<font face=arial size=2>At any moment of the day, some desire is in the process of coming true. -- Deepak Chopra</font>"
item[19]="<font face=arial size=2>At last, after eons of struggle and pain, I am learning to surrender to God. -- Deepak Chopra</font>"
item[20]="<font face=arial size=2>Aware of myself<BR>Simply as Myself<BR>In my knowingness<BR>I embrace death<BR>And caught her<BR>In my arms like a lover. -- Deepak Chopra</font>"
item[21]="<font face=arial size=2>Awareness is the key to achieving what the universe has planned for you. -- Deepak Chopra</font>"
item[22]="<font face=arial size=2>Ayurveda says: As is the atom, so is the universe; as is the microcosm, so is the macrocosm; as is the human body, so is the cosmic body; as is the human mind, so is the cosmic mind. -- Deepak Chopra</font>"

var current=0;

function changeItem(){
if(document.layers){//for NS4+
document.layer1.document.write(item[current])
document.layer1.document.close()
}
else if (document.all || document.getElementById){ 
div1.innerHTML=item[current]
}

if (current==22) current=0 //change 5 as per images
else current++
setTimeout("changeItem()",10000)//change the timing here
}
window.onload=changeItem

//-->
