SINAP.onRead.addEventListener(function() {
	try {
		var LIs = document.getElementById("sinapService").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) {
			if(UA.IE && UA.IE < 7) LI.style.height    =  __H       + "px";
			else                   LI.style.minHeight = (__H - 20) + "px";
		});
	} catch(e) {}
});