var aSplash = new Array();
aSplash[0] = '../images/framework/top/splash1.gif';
aSplash[1] = '../images/framework/top/splash2.gif';
aSplash[2] = '../images/framework/top/splash3.gif';
aSplash[3] = '../images/framework/top/splash4.gif';
aSplash[4] = '../images/framework/top/splash5.gif';
aSplash[5] = '../images/framework/top/splash6.gif';
aSplash[6] = '../images/framework/top/splash7.gif';
aSplash[7] = '../images/framework/top/splash8.gif';
aSplash[8] = '../images/framework/top/splash9.gif';
		
var intImg = 1;
var intMax = aSplash.length - 1;
var i; // for the Mac...
var intTransTime = 5000; // Transition time...

function imageTrans()
{	
	IE5 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 5.")!=-1)) ? true : false;
	IE6 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 6.")!=-1)) ? true : false;
	IE5plus = IE5 || IE6;
	if(IE5plus){
		document.getElementById("imgSpl").style.filter = "progid:DXImageTransform.Microsoft.Pixelate(Duration=1, maxSquare=30)";
		imgSpl.filters[0].enabled = true;
		imgSpl.filters[0].apply();
		imgSpl.src = aSplash[intImg]
		imgSpl.filters[0].play();}
	else{
		document.getElementById("imgSpl").src = aSplash[intImg];
		}
			
	if(intImg == intMax)
		{intImg = 0;}
	else
		{intImg++;}
	i = window.setTimeout('imageTrans();', intTransTime);
}
i = window.setTimeout('imageTrans();', intTransTime);