function showItem(id, blnDisplayText) {
	if (document.all) {
		document.all[id].innerHTML = blnDisplayText;
	}
	else if (document.getElementById) {
		document.getElementById(id).innerHTML = blnDisplayText;	
	}
}

var intTimerId   = null;
var intTimeOut   = 3000;
var intImage     = 0;
var intField     = 1;
var intText      = 1;
var intMaxImage  = 7;

function startItems() {
	intTimerId = setTimeout('nexItem()',intTimeOut);
}

function nexItem() {
	
	if (intField == 0) {
		text = arrItem[intText];
		intText = intText + 1;
	} else {
		text = arrImage[intImage];
		intImage = intImage + 1;
	}

	showItem('itemfield'+intField, text);
	
	intField = intField + 1;
	if (intText > 1)  intText = 0;
	if (intImage > intMaxImage) intImage = 0;
	if (intField > 3) intField = 1;

	clearTimeout(intTimerId);
	intTimerId = setTimeout('nexItem()',intTimeOut);
    return(false)
}
