function swapImg(pObj, pImg)
	{
	pObj.src = pImg + '_h.png';
	pObj.onmouseout = function()
		{
   		pObj.src = pImg + '.png';
 		};
	}
