function itemOn(nGoodsID,itemNum) {
	document.getElementById('item-box'+nGoodsID).style.backgroundColor = '#EEEEEE';
}

function itemOff(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.backgroundColor = '#FFFFFF';
}

function itemClick(link){
	location.href = link;
}