// オススメITEM
function recommendOn(nGoodsID,itemNum) {
	document.getElementById('recommend-box'+nGoodsID).style.backgroundColor = '#00AC96';
	document.getElementById('recommend-info'+nGoodsID).style.color = '#ffffff';
}
function recommendOff(nGoodsID) {
	document.getElementById('recommend-box'+nGoodsID).style.backgroundColor = '#ffffff';
	document.getElementById('recommend-info'+nGoodsID).style.color = '#000000';
}

function recommendClick(link){
	location.href = link;
}

function itemOn(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.backgroundColor = '#00AC96';
	document.getElementById('item-box-name'+nGoodsID).style.color = '#ffffff';
	document.getElementById('item-box-price'+nGoodsID).style.color = '#ffffff';
}

function itemOff(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.backgroundColor = '#ffffff';
	document.getElementById('item-box-name'+nGoodsID).style.color = '#000000';
	document.getElementById('item-box-price'+nGoodsID).style.color = '#000000';
}
function itemClick(link){
	location.href = link;
}

// 新着商品一覧
function NewitemOn(nGoodsID,itemNum) {
	document.getElementById('item-box'+nGoodsID).style.backgroundColor = '#00AC96';
	//document.getElementById('item-box-name'+nGoodsID).style.color = '#ffffff';
	//document.getElementById('item-box-price'+nGoodsID).style.backgroundColor = '#FFFFFF';
}
function NewitemOff(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.backgroundColor = '#ffffff';
	//document.getElementById('item-box-name'+nGoodsID).style.color = '#000000';
	//document.getElementById('item-box-price'+nGoodsID).style.backgroundColor = '#000000';
}
function NewitemClick(link){
	location.href = link;
}

// オススメ用
function itemOnCheck(nGoodsID) {
	document.getElementById('item-box-chk'+nGoodsID).style.border = '1px solid #E6E6E6';
	document.getElementById('item-box-name-chk'+nGoodsID).style.color = '#BBBBBB';
}

function itemOffCheck(nGoodsID) {
	document.getElementById('item-box-chk'+nGoodsID).style.border = '1px solid #FFFFFF';
	document.getElementById('item-box-name-chk'+nGoodsID).style.color = '#999999';
}
// サブ一覧
function SubitemOn(nGoodsID,itemNum) {
	document.getElementById('item-box'+nGoodsID).style.backgroundColor = '#00AC96';
}
function SubitemOff(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.backgroundColor = '#ffffff';
}
