function FixMargins()
{
	var quotesCount, id, imgId, elHeight, i, mrgTop;
	quotesCount = document.getElementsByName('quote').length;
	for (i = 1; i <= quotesCount; i++)
	{
		id = "quote-container" + i;
		imgId = "quote-image" + i;
		elHeight = document.getElementById(id).offsetHeight;
		mrgTop = (elHeight - 70) / 2;
		if (mrgTop > 0)
			document.getElementById(imgId).style.marginTop = mrgTop + "px";
	}
}