function itemOn(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.border = '1px solid #222';
	document.getElementById('item-box-name'+nGoodsID).style.color = '#BBBBBB';
	document.getElementById('item-box-price'+nGoodsID).style.backgroundColor = '#222';
}

function itemOff(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.border = '1px solid #000';
	document.getElementById('item-box-name'+nGoodsID).style.color = '#999999';
	document.getElementById('item-box-price'+nGoodsID).style.backgroundColor = '#000';
}

function itemOnNew(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.border = '1px solid #222';
	document.getElementById('item-box-name'+nGoodsID).style.color = '#BBBBBB';
	document.getElementById('item-box-price'+nGoodsID).style.backgroundColor = '#222';
}

function itemOffNew(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.border = '1px solid #000';
	document.getElementById('item-box-name'+nGoodsID).style.color = '#999999';
	document.getElementById('item-box-price'+nGoodsID).style.backgroundColor = '#000';
}

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

