/**********************************************************************
WWCITY  : for list.asp [ list.js ]

00.00.00
***********************************************************************
a function :
	- detail_changeProduct()
	- detail_openSize()
	- detail_xxx()
**********************************************************************/

/*---------------------------------------------
 variable
---------------------------------------------*/
var gLt_blnShop = false;


/*=============================================
 list_overItem()
=============================================*/
function list_overItem (vobjItem, vstrFlg) {
	var astrPrdBtnImgBgPos  = { 'act' : '0 -13px',   'out'  : '0 0' }
	var astrPrdNameTextDeco = { 'act' : 'underline', 'out'  : 'none' }
	var astrNavType = common_getNavType();
	var strNavtype = astrNavType[0];
	var intNavVer = eval(astrNavType[1]);
	var objBaseElement = '';
	var aobjElements = [];

	var intPrdBtn  = 2;
	var intPrdName = 4;
	if (gLt_blnShop) {
		intPrdBtn  = 2;
		intPrdName = 3;
	}

	for (i=0; i<vobjItem.childNodes.length; i++) {
		if (vobjItem.childNodes[i].nodeType != 3) {
			objBaseElement = vobjItem.childNodes[i];
		}
	}
	for (i=0; i<objBaseElement.childNodes.length; i++) {
		if (objBaseElement.childNodes[i].nodeType != 3) {
			aobjElements.push(objBaseElement.childNodes[i]);
		}
	}

	if (strNavtype != 'InternetExplorer' || intNavVer >= 6) { vobjItem.style.cursor = 'pointer'; }
	aobjElements[intPrdBtn].style.backgroundPosition = astrPrdBtnImgBgPos[vstrFlg];
	aobjElements[intPrdName].style.textDecoration    = astrPrdNameTextDeco[vstrFlg];
}


/*********************************************************************/
