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

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

function newitemOn(nGoodsID) {
	document.getElementById('newitem-box'+nGoodsID).style.backgroundColor = '#FFDEBF';
}

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

function hotitemOn(nGoodsID) {
	document.getElementById('hotitem-box'+nGoodsID).style.backgroundColor = '#FFDEBF';
}

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

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