rollImg=new Image();
rollImg.src="../i/roll-1.png";

function waxOn(rollid) {
	var nextRoll = rollid + 1;
	var arollnext = document.getElementById('aroll'+nextRoll);
	var underRoll = rollid + 5;
	var arollunder = document.getElementById('aroll'+underRoll);
	
	document.getElementById('roll'+rollid).style.display='block';
	if (arollnext) {
		arollnext.style.zIndex='1';
		document.getElementById('aroll'+rollid).style.zIndex='99';
		document.getElementById('unroll'+rollid).style.display='none';
		
		if (arollunder) {
			arollunder.style.zIndex='2';
		}
	}
	
}
function waxOff(rollid) {
	document.getElementById('roll'+rollid).style.display='none';
	document.getElementById('unroll'+rollid).style.display='block';

}