function itemOn(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.border = '2px solid #987E5F';
}

function itemOff(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.border = '2px solid #F0ECE7';
}

function newitemOn(nGoodsID) {
	document.getElementById('newitem-box'+nGoodsID).style.border = '2px solid #987E5F';
}

function newitemOff(nGoodsID) {
	document.getElementById('newitem-box'+nGoodsID).style.border = '2px solid #F0ECE7';
}

function bestitemOn(nGoodsID) {
	document.getElementById('bestitem-box'+nGoodsID).style.border = '2px solid #987E5F';
}

function bestitemOff(nGoodsID) {
	document.getElementById('bestitem-box'+nGoodsID).style.border = '2px solid #F0ECE7';
}

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