function normRoll(imgname, imgsrc) {
	imgsrc = "img/" + imgsrc;
	document.images[imgname].src = imgsrc;
	return true;
}

// CAPTCHA FUNCTIONALITY

function oC(whichbox) {
	if (whatsopen != "") {
		document.getElementById(whatsopen).style.backgroundPosition = "0px 0px";
	}
	document.getElementById(whichbox).style.backgroundPosition = "-50px 0px";
	whatsopen = whichbox;
	for (var i = 0; i <= howMany; i++) {
		if (currentDivs[i] == whichbox) {
			document.stuff.moo.value = currentFruits[i];
		}
	}
	document.getElementById("youselected").innerHTML = "i spy... a " + document.stuff.moo.value;
}

