var cIdx3
var cImgs = [	'images/home/1Unlock.png',
				'images/home/2Decision.png',
				'images/home/3Effective.png',
				'images/home/4Involvement.png',
				'images/home/5Portfolio.png',
				'images/home/6Value.png',
				'images/home/7Effective.png',
				'images/home/8Allocation.png' ];
var cNum = 8;
function cFadeImg()
{
	cIdx = cIdx + 1;
	if(cIdx>(cNum-1)) cIdx = 0;
	//alert(cIdx + " " +  cImgs[cIdx]);
	swapfade(document.getElementById('banner'), cImgs[cIdx], '3', 'Catalyze Ltd');
	//crosswipe(document.getElementById('banner'), cImgs[cIdx], '2','trbl', 'Catalyze Ltd');
	setTimeout("cFadeImg()",10000);	// continue
}

function cLoad()
{
	cIdx = 0;
	setTimeout("cFadeImg()",5000);
}