// JavaScript Document

/*
Random text script by Andrew von Gregor (http://www.AndrewVonGregor.com) 
*/
function random_text()
{};
var random_text = new random_text();
var number = 0;

random_text[number++] = "<p>We provide high-quality instruction for those who would like to learn yoga, in a supportive and non-competitive environment, regardless of age or physical ability.</p>"
random_text[number++] = "<p>Yoga unifies the breath, body and mind. Thousands of years ago, yoga's roots originated as a practice to promote health and longevity&#8212;a belief that is still practiced at Yoga on Orange.</p>"
random_text[number++] = "<p>When you consciously follow your breath, yoga becomes a form of moving meditation.</p>"
random_text[number++] = "<p>Our classes focus on building strength and endurance, increasing flexibility and balance, and cultivating body and breath awareness for health and wellbeing.</p>"
random_text[number++] = "<p>Our environment is energetically peaceful, tranquil and meditative. As you walk through the door you will begin to feel a release from the day's stress and chaos and relax into your 'yoga space.'</p>"

var random_number = Math.floor(Math.random() * number);

document.write(random_text[random_number]);
