function itemOn(nGoodsID,itemNum) {
	document.getElementById('item-box'+nGoodsID).style.backgroundImage = "url(/user_data/images/bk_slash.gif)";
	//document.getElementById('item-box-price'+nGoodsID).style.backgroundColor = '#FFFFFF';
}

function itemOff(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.backgroundImage = "none";
	//document.getElementById('item-box-price'+nGoodsID).style.backgroundColor = '#E1E1E1';
}

function itemClick(link){
	location.href = link;
}
