function itemOn(nGoodsID,itemNum) {
    var arrColor = new Array('#222222','#222222','#222222','#222222','#222222','#222222'); 
	document.getElementById('item-box'+nGoodsID).style.backgroundColor = arrColor[itemNum];
	//document.getElementById('item-box-price'+nGoodsID).style.backgroundColor = '#FFFFFF';
}

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

function bestitemOn(nGoodsID,itemNum) {
    var arrColor = new Array('#222222','#222222','#222222','#222222','#222222','#222222'); 
	document.getElementById('bestitem-box'+nGoodsID).style.backgroundColor = arrColor[itemNum];
	//document.getElementById('item-box-price'+nGoodsID).style.backgroundColor = '#FFFFFF';
}

function bestitemOff(nGoodsID) {
	document.getElementById('bestitem-box'+nGoodsID).style.backgroundColor = '#000000';
	//document.getElementById('item-box-price'+nGoodsID).style.backgroundColor = '#E1E1E1';
}


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