// JavaScript Document

// Set slideShowSpeed (milliseconds) 
var slideShowSpeed_1 = 5000; 
// Duration of crossfade (seconds) 
var crossFadeDuration_1 = 6; 
// Specify the image files 
var Pic_1 = new Array(); 
// to add more images, just continue 
// the pattern, adding to the array below 

Pic_1[0] = 'Images/HHP_graduate_1.png'
Pic_1[1] = 'Images/master_hearbalist_L.jpg'
Pic_1[2] = 'Images/consultation.jpg'
Pic_1[3] = 'Images/dayspa_ayurveda_1.jpg'
Pic_1[4] = 'Images/herbal_meds.png'
Pic_1[5] = 'Images/leonardo_da_vinci_L.jpg'
// do not edit anything below this line
var t_1;
var j_1 = 0;
var p_1 = Pic_1.length;
var preLoad_1 = new Array();
for (i = 0; i < p_1; i++) 
{
	preLoad_1[i] = new Image();
	preLoad_1[i].src = Pic_1[i];
}

function runSlideShow_1() {
	if (document.all) {
		document.images.SlideShow_1.style.filter="blendTrans(duration=2)";
		document.images.SlideShow_1.style.filter="blendTrans(duration=crossFadeDuration_1)";
		document.images.SlideShow_1.filters.blendTrans.Apply();
	}
		document.images.SlideShow_1.src = preLoad_1[j_1].src;
	if (document.all) 
	{
		document.images.SlideShow_1.filters.blendTrans.Play();
	}
	j_1 = j_1 + 1;
	if (j_1 > (p_1 - 1)) j_1 = 0;
    {
		t_1 = setTimeout('runSlideShow_1()', slideShowSpeed_1);
    }
}
