SINAP.onRead.addEventListener(function() {
	try {
		var sSs = document.getElementById("sinapServices").getElementsByClassName("sinapService");
		foreach(sSs, function(sS) {
			var LIs = sS.getElementsByTagName("li");
			var __H = parseInt(LIs[0].offsetHeight);
			foreach(LIs, function(LI) { if(__H < parseInt(LI.offsetHeight)) __H = parseInt(LI.offsetHeight); });
			foreach(LIs, function(LI) {
				LI.style.height    =  __H       + "px";
				/*
				if(UA.IE && UA.IE < 7) LI.style.height    =  __H       + "px";
				else                   LI.style.minHeight = (__H - 20) + "px";
				*/
			});
		});
	} catch(e) {}
});
