function itemOn(nGoodsID,itemNum) {
    var arrColor = new Array('#ffffff','#ffffff','#ffffff','#ffffff','#ffffff','#ffffff'); 
	document.getElementById('item-box'+nGoodsID).style.backgroundColor = arrColor[itemNum];
	document.getElementById('item-box'+nGoodsID).style.border = 'solid 1px #cccccc';
}

function itemOff(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.backgroundColor = '#FFFFFF';
	document.getElementById('item-box'+nGoodsID).style.border = 'solid 1px #ffffff';
}

function recitemOn(nGoodsID,itemNum) {
    var arrColor = new Array('#DCD3B4','#DCD3B4','#DCD3B4','#DCD3B4','#DCD3B4','#DCD3B4'); 
	document.getElementById('recitem-box'+nGoodsID).style.backgroundColor = arrColor[itemNum];
	document.getElementById('recitem-box'+nGoodsID).style.border = 'solid 1px #999';
}

function recitemOff(nGoodsID) {
	document.getElementById('recitem-box'+nGoodsID).style.backgroundColor = '#DCD3B4';
	document.getElementById('recitem-box'+nGoodsID).style.border = 'solid 1px #DCD3B4';
}

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

