/*
Extension developed by David G. Miles (www.z3roadster.net/dreamweaver)
To add more shock to your site, visit www.DHTML Shock.com
*/

// begin dHTML SlideShow Script 
<!--
txt=new Array();
txt[0]=""; //just leave this one blank
txt[1]="Things To Bring! <br>- A yoga mat  <br>- A full-length towel <br>&nbsp; for the class and <br>&nbsp; another towel for <br>&nbsp; showering after<br>&nbsp; class <br>- A washcloth or two <br>- Shorts which show<br>&nbsp; your knees  <br>-At least a quart/liter<br>&nbsp;  of water<br>- MOST IMPORTANT: <br>&nbsp; NO FOOD <br>&nbsp; for at least two<br>&nbsp;  hours before class!!";
txt[2]="<br><br>Special <br><br>Introductory Offer <br><br> 10 DAYS IN A ROW! <br><br> Twenty Bucks!! <br><br> Absolutely <br><br> Unbelievable!!";

label_txt=new Array();
label_txt[0]="";
label_txt[1]="Triangle / Trikanasana";
label_txt[2]="Standing Bow Pulling Pose";

desc_txt=new Array();
desc_txt[0]="";
desc_txt[1]="The triangle is the only posture in the world that improves every muscle, joint, tendon, and internal organ in the body. At the same time, it revitalizes nerves, veins and tissues. It helps cure lumbago and rheumatism of the lower spine by flexing and strengthening the last five vertebrae, and it improves crooked spines. This is the most important pose to increase the strength and flexibility of the hip joint and of the muscles of the side of the torso. It also firms upper thighs and hips, slims the waistline, and improves the deltoid, trapezius, scapula and latissimus muscles.";
desc_txt[2]="Standing Bow Pulling Pose is a perfect example of the tourniquet or damming effect in Yoga, because it transfers the circulation from one side of the body to the other, and then equalizes it--circulating fresh blood to each internal organ and gland to keep them healthy. Also, this pose helps develop concentration, patience and determination. Physically, it firms the abdominal wall and upper thighs, and tightens upper arms, hips and buttocks. It increases the size and the elasticity of the rib cage and the lungs and improves the flexibility and strength of the lower spine and of most of the body's muscles.";


currentslide=1; 
maxslides=2; 
slide = new Array(maxslides+1);
speed=14000
ssTimerID = null

function stopSlide() { 
cont=false 
} 

function preloadSlideshow()
{
if(document.images) { 

		for(var n=1;n<=maxslides;n++) { 
			slide[n]=new Image(); 
			slide[n].src='images/Slide_'+n+'.gif';
		} 
	}
}

function playSlideShow()
	{
	window.clearTimeout(ssTimerID);

	if(currentslide>maxslides) currentslide=1; 
	document.images['slide'].src=slide[currentslide].src; 
	document.getElementById('div_1').innerHTML=txt[currentslide];
	document.getElementById('div_3').innerHTML=desc_txt[currentslide];
	document.getElementById('div_2').innerHTML=label_txt[currentslide];
	currentslide++; 
	ssTimerID = setTimeout("playSlideShow()",speed);
	}

function pauseSlideShow()
{
	window.clearTimeout(ssTimerID);
}

//-->