function rollCell(item,col){
	var i = document.getElementById(item);
	i.style.backgroundColor = col;
	i.style.cursor = "pointer";
	
}
