//begin slideshow script
var t;var j = 0;var preLoad = new Array();
var tt;var jj = 0;var preLoad2 = new Array();

function preLoadImages()
{preLoad[0] = new Image();
preLoad[0].src = "./images/edentaxispenrith2.jpg";
preLoad[1] = new Image();preLoad[1].src = "./images/edentaxispenrith3.jpg";
preLoad[2] = new Image();preLoad[2].src = "./images/edentaxispenrith4.jpg";
preLoad[3] = new Image();preLoad[3].src = "./images/edentaxispenrith5.jpg";
preLoad[4] = new Image();preLoad[4].src = "./images/edentaxispenrith1.jpg";

t = setInterval('runSlideShow()',3000);
document.getElementById("loading").style.display="none";
}
function preLoadImages2()
{preLoad2[0] = new Image();
preLoad2[0].src = "./images/edentaxispenrith7.jpg";
preLoad2[1] = new Image();preLoad2[1].src = "./images/edentaxispenrith8.jpg";
preLoad2[2] = new Image();preLoad2[2].src = "./images/edentaxispenrith9.jpg";
preLoad2[3] = new Image();preLoad2[3].src = "./images/edentaxispenrith10.jpg";
preLoad2[4] = new Image();preLoad2[4].src = "./images/edentaxispenrith6.jpg";

tt = setInterval('runSlideShow2()',3000);
document.getElementById("loading2").style.display="none";
}
function runSlideShow()
{if (document.all)
	 { document.images.homeimg0.style.filter="blendTrans(duration=2)";
	document.images.homeimg0.filters.blendTrans.Apply();
	}
document.images.homeimg0.src = preLoad[j].src;
if (document.all) 
	{ document.images.homeimg0.filters.blendTrans.Play();}
j = j + 1;if (j > (5 - 1)) j = 0;
}
function runSlideShow2()
{if (document.all)
	 { document.images.fd0.style.filter="blendTrans(duration=2)";
	document.images.fd0.filters.blendTrans.Apply();
	}
document.images.fd0.src = preLoad2[jj].src;
if (document.all) 
	{ document.images.fd0.filters.blendTrans.Play();}
jj = jj + 1;if (jj > (5 - 1)) jj = 0;
}



