/*-------------------------------------------------------------
@@ Item box JavaScript Document
-------------------------------------------------------------*/
function itemOn(nGoodsID) {
	document.getElementById('item_box'+nGoodsID).style.backgroundImage = 'url(../img/itembox_on.gif)';
	document.getElementById('item_box'+nGoodsID).style.backgroundImage = 'url(../img/itembox_on.gif)';

	document.getElementById('item_price'+nGoodsID).style.backgroundColor = '#FFFFFF';
}

function itemOff(nGoodsID) {
	document.getElementById('item_box'+nGoodsID).style.backgroundImage = 'url(../img/itembox.gif)';
	document.getElementById('item_box'+nGoodsID).style.backgroundImage = 'url(../img/itembox.gif)';
	document.getElementById('item-box-bottom'+nGoodsID).style.backgroundImage = 'url(../img/itembox.gif)';
	document.getElementById('item_price'+nGoodsID).style.backgroundColor = '#f6f6f6';
}

