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

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

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


function recommendOn(nGoodsID,itemNum) {
    var arrColor = new Array('#1C1C1C','#1C1C1C','#1C1C1C','#1C1C1C','#1C1C1C','#1C1C1C'); 
	document.getElementById('recommend-box'+nGoodsID).style.backgroundColor = arrColor[itemNum];
	document.getElementById('recommend-box-name'+nGoodsID).style.color = '#999999';
	//document.getElementById('recommend-box-price'+nGoodsID).style.backgroundColor = '#FFFFFF';
}

function recommendOff(nGoodsID) {
	document.getElementById('recommend-box'+nGoodsID).style.backgroundColor = '#000000';
	document.getElementById('recommend-box-name'+nGoodsID).style.color = '#CCCCCC';
	//document.getElementById('recommend-box-price'+nGoodsID).style.backgroundColor = '#E1E1E1';
}

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