function itemOn(nGoodsID) {
	//document.getElementById('item-box'+nGoodsID).style.border = '1px solid #F0F0F0';
	document.getElementById('item-box'+nGoodsID).style.opacity = "0.8";
	document.getElementById('item-box'+nGoodsID).style.filter = "alpha(opacity=80)";
}

function itemOff(nGoodsID) {
	//document.getElementById('item-box'+nGoodsID).style.border = '1px solid #F0F0F0';
	document.getElementById('item-box'+nGoodsID).style.opacity = "1";
	document.getElementById('item-box'+nGoodsID).style.filter = "alpha(opacity=100)";
}

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

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

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