var slideFadeDuration = 3;
var slideSpeed = 3000;

var sPic = new Array();
var sTitle = new Array();
var sUrl = new Array();
//*************************************************************************
sPic[0] = 'graphics/hthumb_abundance.jpg';
sTitle[0] = "Flowing Abundance ";
sUrl[0]  = "/abundance.php";

sPic[1] = 'graphics/hthumb_courage.jpg';
sTitle[1] = "Awakened Courage";
sUrl[1]  = "/courage.php";

sPic[2] = 'graphics/hthumb_imbued_blue.jpg';
sTitle[2] = "Imbued Auspiciousness";
sUrl[2]  = "/imbued.php";

sPic[3] = 'graphics/hthumb_intoxicated.jpg';
sTitle[3] = "Intoxicated Sweetness";
sUrl[3]  = "/intoxicated.php";

sPic[4] = 'graphics/hthumb_maternal.jpg';
sTitle[4] = "Maternal Endearment";
sUrl[4]  = "/maternal.php";

sPic[5] = 'graphics/hthumb_origin.jpg';
sTitle[5] = "Origin of Beauty";
sUrl[5]  = "/originofbeauty.php";

sPic[6] = 'graphics/hthumb_radiance.jpg';
sTitle[6] = "Majestic Radiance";
sUrl[6]  = "/majestic.php";

sPic[7] = 'graphics/hthumb_victorious.jpg';
sTitle[7] = "Victorious Attainment";
sUrl[7]  = "/victorious.php";
//*************************************************************************
var j = 0;
var p = sPic.length;
var t;

var preLoad = new Array();
for (i = 0; i < p; i++){
   preLoad[i] = new Image();
   preLoad[i].src = sPic[i];
}

function runSlideShow(){
   var slide_o = document.getElementById("slidesPic");
   var title_o = document.getElementById("slideTitle");
   var url_o = document.getElementById("slideUrl");
   
   if (document.all){
  		slide_o.style.filter="blendTrans(duration=2)";
    	slide_o.style.filter="blendTrans(duration=slideFadeDuration)";
  		slide_o.filters.blendTrans.Apply();      
  	}
	
   	slide_o.src = preLoad[j].src;
	title_o.innerHTML = sTitle[j];
	url_o.href= sUrl[j];
	slide_o.style.display = "";
  	
	if (document.all){
      	slide_o.filters.blendTrans.Play();
   	}
  
   	j = j + 1;
	
   	if (j > (p-1)) 
		j=0;
   	t = setTimeout('runSlideShow()', slideSpeed);
}