function itemOn(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.backgroundColor = '#F5F3F1';
}

function itemOff(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.backgroundColor = '#FFFFFF';
}

function itemOnNew(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.backgroundColor = '#F5F3F1';
}

function itemOffNew(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.backgroundColor = '#FFFFFF';
}

function itemClick(link){
	location.href = link;
}
