function initBox()
{
	var _li = document.getElementById("highlights").getElementsByTagName("div");
	var _maxHeight = 0;
	for (var i = 0; i < _li.length; i++) {
		if (_li[i].className.indexOf("box") != -1 ) {
			(_maxHeight < _li[i].offsetHeight)? _maxHeight = _li[i].offsetHeight : _maxHeight=_maxHeight;
			_li[i].onmouseover = function()
			{
				this.className += " hover";
			}
			_li[i].onmouseout = function()
			{
				this.className = this.className.replace(" hover", "");
			}
		}
	}
	for (var i = 0; i < _li.length; i++) {
		if (_li[i].className.indexOf("box") != -1 ) {_li[i].style.height = _maxHeight - 10 + "px";}
	}
}
if (window.addEventListener) window.addEventListener("load", initBox, false);
else if (window.attachEvent) window.attachEvent("onload", initBox);
