window.defaultStatus = "web development by dg2";

function changeImg(theId,theFile) {
	tempId = theId.split(",");
	tempFile = theFile.split(",");
	x = 0;
	do {
		if (document.getElementById(tempId[x]) && (tempFile[x])) {
			document.getElementById(tempId[x]).src = tempFile[x];
		}
	  x = x + 1;
	} while (x < tempId.length);
}

//change cursor to hand
function hand(theId) {

	if (!document.all) {
		document.getElementById(theId).style.cursor ='pointer';
	}
	else {
		document.all(theId).style.cursor ='hand';
	}
}
