function roll (imgName,imgPath,rollState) {
	var thisImg = new Image();
	thisImg = eval("document." + imgName);
	thisImg.src = imgPath + imgName + ((rollState) ? "_over.gif" : ".gif");
}





