<!-- begin JavaScript
function displayQuote(displaycount){
   arraycount=10
   quote = new Array(arraycount);
   author = new Array(arraycount);
   quote[0] = "&quot;For beginners, it is always very good to approach "+
   			  "meditation with a very open mind.<br><br>We should not start "+
			  "meditating with the wish to have a peaceful mind, very "+
			  "good experiences and so on.<br><br>To have a 'beginners attitude', "+
			  "we should be open-minded without expectations.&quot;";
   author[0] = "Quote from<br>'LIVING DHARMA'";
   quote[1] = "&quot;The whole purpose of meditation is to develop greater "+
   			  "strength, to become stable, healthy, confident and wise.<br><br>"+
			  "If we have inner peace and wisdom, we will be well equipped to "+
			  "really help others unconditionally.&quot;";
   author[1] = "Quote from<br>'LIVING DHARMA'";
   quote[2] = "&quot;Traditionally, the beginner's mind is compared to a big waterfall.<br><br>"+
   			  "What happens, is that when we start to sit, we get a glimpse of it. "+
			  "Meditation is not making our mind chaotic but rather makes us see how "+
			  "chaotic it currently is.<br><br>This is how we are and we should not "+
			  "be afraid of such experiences.&quot;";
   author[2] = "Quote from<br>'LIVING DHARMA'";
   quote[3] = "&quot;In meditation, one has to remember first to develop compassion "+
   			  "and loving kindness towards oneself. If we don't know how to be "+
			  "loving and kind towards ourselves in the first place, how can we "+
			  "be kind and loving towards others?&quot;";
   author[3] = "Quote from<br>'LIVING DHARMA'";
   quote[4] = "&quot;Meditation is like ploughing a field.<br><br>If we plough the "+
   			  "field properly and plant very pure seeds, we don't need to dig up "+
			  "the seeds all the time to see whether there is any result.<br><br>"+
			  "We should know that, if we have done everything properly, there will"+
			  "be pure fruition&quot;"
   author[4] = "Quote from<br>'LIVING DHARMA'";
   quote[5] = "&quot;Learning to deal with our emotions through meditation, "+
   			  "we gradually get used to the idea of the possibility of inner transformation.&quot;";
   author[5] = "Quote from<br>'LIVING DHARMA'";
   quote[6] = "&quot;Do not take lightly small good deeds believing they can hardly help, "+
   			  "for drops of water one by one in time can fill a giant pot&quot;"
   author[6] = "By Patrul Rinpoche in<br>'The Words of My Perfect Teacher'";
   quote[7] = "&quot;Where could you find enough leather to cover all of the earth? "+
   			  "But you can cover all of the earth with the leather of the soles of your "+
			  "shoes. It is the same.&quot;"
   author[7] = "Quote from<br>'Entering the Bodhisattva Path'";
   quote[8] = "&quot;A beginner's mind is often compared to a big waterfall, "+
   			  "with thoughts tumbling down like rushing water, but there's "+
					"no need to get upset or frustrated.  Through regular practice it will gradually settle, "+
			  "become as gentle as a quiet river, and finally as deep and peaceful as an ocean without waves.&quot;"
   author[8] = "Quote from<br>'LIVING DHARMA'";
   quote[9] = "&quot; Too much thinking, a lack of stability and wisdom is like having no eyes. "+
   			  "We are busy trying to walk among people, pushing everybody and finally we fall over! "+
					"Therefore we should never allow ourselves to get into the idea that meditating and thinking "+
			  "nothing is a waste of time. Letting go of the pressure to think all the time is the most previous, wonderful and profound thing we can ever do.&quot;"
   author[9] = "Quote from<br>'LIVING DHARMA'";
   
   index = Math.floor(Math.random() * quote.length);  
   document.write("<span class='ta7'>" + quote[index] + "</span><br><br>");
   document.write("<b class='ta7'><i>"  + author[index] + "<i></b><br><br>");
}
// end JavaScript -->
