<!-- Begin
var slideShowSpeed = 4000;
var crossFadeDuration = 4000;
var Pic = new Array();

Pic[0] = 'gifs/hpbaner1.jpg'
Pic[1] = 'gifs/hpbaner2.jpg'


var tm;
var jm = 0;
var pm = Pic.length;
var preLoad = new Array();
for (i = 0; i < pm; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}

function runSlideShow()
{
	if (document.all)
	{
		document.images.SlideShow.style.filter="revealTrans(duration=2)";
		document.images.SlideShow.style.filter="revealTrans(duration=2,transition=12)";
		document.images.SlideShow.filters.revealTrans.Apply();
	}
	document.images.SlideShow.src = preLoad[jm].src;
	if (document.all)
	{
		document.images.SlideShow.filters.revealTrans.Play();
	}
	jm = jm + 1;
	if (jm > (pm - 1)) jm = 0;
		t = setTimeout('runSlideShow()', slideShowSpeed);
}
// 
