
function rp() {
	var totalImages = 27;
	var randnum = Math.random();
	return Math.round((totalImages - 1) * randnum) + 1;
}
RCCR.curImage = rp();
