function initImg()
{
	var hold = document.getElementsByTagName("ul");
	for(i=0; i< hold.length; i++)
	{
		if(hold[i].className.indexOf("with-prod")!=-1)
		{
			hd = hold[i].getElementsByTagName("div")
			var _h = 0;
			for(var j=0; j< hd.length; j++)
			{
				if((hd[j].offsetHeight > _h) && (hd[j].className.indexOf("img-hold")!=-1)){ _h = hd[j].offsetHeight;}
			}
			for(var j=0; j< hd.length; j++)
			{
				if(hd[j].className.indexOf("img-hold")!=-1)
				{
					hd[j].style.height = _h + "px";
					_a = hd[j].getElementsByTagName("a")[0];
					var _m = (_h - _a.offsetHeight)/2 + "px";
					_a.style.marginTop = _m;
				}
			}
		}
	}
}

if (window.addEventListener){ window.addEventListener("load", initImg, false);}
else if (window.attachEvent){ window.attachEvent("onload", initImg);}
