function productCellOver(cell) {
	cell.style.textDecoration='underline';
	cell.style.color='#ffffcc';
}

function productCellOut(cell) {
	cell.style.textDecoration='none';
	cell.style.color='#ffffff';
}
