var dom = document.getElementById ? true:false;
var nn4 = document.layers ? true:false;
var ie4 = document.all ? true:false;
var pathToRoot = "";

var aSplash = new Array();
aSplash[0] = pathToRoot + '../images/splash/splash_001.jpg';
aSplash[1] = pathToRoot + '../images/splash/splash_002.jpg';
aSplash[2] = pathToRoot + '../images/splash/splash_003.jpg';

var intImg = 0;
var intMax = aSplash.length - 1;
var i; // for the Mac...
var intTransTime = 7500; // Transition time...

function imageTrans()
{
	if(ie4)
	{
		var imgSpl = document.images.PageHeader_imgSplash;
		imgSpl.filters[0].enabled = true;
      	imgSpl.filters[0].apply();
      	imgSpl.src = aSplash[intImg];
      	imgSpl.filters[0].play();
	
		if(intImg == intMax)
			intImg = 0;
		else
			intImg++;
    	
		i = window.setTimeout('imageTrans();', intTransTime);
	}
}

if (ie4)
{
    i = window.setTimeout('imageTrans();', intTransTime);
}