function itemOn(nGoodsID,itemNum) {
    var arrColor = new Array('#EEEEEE','#EEEEEE','#EEEEEE','#EEEEEE','#EEEEEE','#EEEEEE'); 
	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 = '#FFFFFF';
	//document.getElementById('item-box-price'+nGoodsID).style.backgroundColor = '#E1E1E1';
}

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

function ditemOn(nGoodsID,itemNum) {
	document.getElementById('item-box'+nGoodsID).style.border = '1px solid #E6E6E6';
	//document.getElementById('item-box-price'+nGoodsID).style.backgroundColor = '#FFFFFF';
}

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

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