
/*function handlePulldownMouseOver(tdId, imgId, bgcolor, textColor) {
	td = document.getElementById(tdId);
	
	td.style.background = bgcolor;	
	td.style.color = textColor;	
	
	if (imgId != "") {
		img = document.getElementById(imgId);
		img.src = "/common/images/pd_arrow_o.gif";
	}
}*/

/* function handlePulldownMouseOut(tdId, imgId, bgcolor, textColor) {
	td = document.getElementById(tdId);
	
	td.style.background = bgcolor;	
	td.style.color = textColor;	
	
	if (imgId != "") {
		img = document.getElementById(imgId);
		img.src = "/common/images/pd_arrow_n.gif";
	}
} */

function handlePulldownMouseOver(itemImgId, itemImgPath) {
	var img = document.getElementById(itemImgId);
	img.src = itemImgPath;
//	MM_swapImage(itemImgId,'',itemImgPath,1)	
}

function handlePulldownMouseOut() {
/*	img = document.getElementById(itemImgId);
	img.src = itemImgPath;*/
	for(var i = 0; i < mouseOutImgBuffer.length; i += 2) {
		var img = document.getElementById(mouseOutImgBuffer[i]);
		img.src = mouseOutImgBuffer[i+1];
	}
	mouseOutImgBuffer = new Array();
//	alert(mouseOutImgBuffer.length);
//	MM_swapImgRestore();
//	alert("sdfdf");
}




