// base javascripts

function ShopMen(id,mode) {
	if(mode == 'on') {

		document.getElementById(id).style.background = '#000';
		document.images['p'+ id].src = '/images/ico/arr_mm.gif';
	}
	else {
		document.getElementById(id).style.background = '';
		document.images['p'+ id].src = '/images/ico/arr_mm0.gif';
	}
}

function pList(id,mode) {
	if(mode == 'on') {
		document.getElementById(id).style.backgroundColor = '#e8e8e8';
//		document.getElementById('det_def').style.display = 'none';
	}
	else {
		document.getElementById(id).style.backgroundColor = '#fff';
//		document.getElementById('det_def').style.display = 'block';
	}
}

function dPic(pica,picb,mode) {
	if(mode == 'on') {
		document.images['dpic'].src = '/images/products/' + picb;
	}
	else {
		document.images['dpic'].src = '/images/products/' + pica;
	}
}

// li hover IE6
function IEHoverPseudo() {
	var navItems = document.getElementsByTagName("li");
	for (var i=0; i<navItems.length; i++) {
		navItems[i].onmouseover=function() { this.className += " over"; }
		navItems[i].onmouseout=function() { this.className = "parent"; }
	}
}
window.onload = IEHoverPseudo;

function BrShowPic(imgStd,altTxt) {
	ajaxwin=dhtmlwindow.open('ajaxbox', 'ajax', '/etc/sp.php?p=' + imgStd, altTxt, 'width=660px,height=500px,left=25px,top=25px,resize=1,scrolling=1');
	return false;
}