window.onload = pageLoad;

function pageLoad()
{
	homeGoodsHeight();
	showCounter();
}


function showCounter()
{
	document.getElementById('footerCounter').innerHTML = '<a href="http://www.liveinternet.ru/click" '+'target=_blank><img src="http://counter.yadro.ru/hit?t14.1;r'+escape(document.referrer)+((typeof(screen)=='undefined')?'':';s'+screen.width+'*'+screen.height+'*'+(screen.colorDepth?screen.colorDepth:screen.pixelDepth))+';'+Math.random()+'" alt="liveinternet.ru: iieacaii ?enei oeoia ca 24 ?ana, iinaoeoaeae ca 24 ?ana e ca naaiai\y" '+'border=0 width=88 height=31></a>';
}


function homeGoodsHeight()
{
	var block = 0;
	var catBlock = document.getElementById('catalogueGoods');
	var homeBlock = document.getElementById('homeGoodsBlock');
	var colorBlock = document.getElementById('materialColor');
	var colorFotoBlock = document.getElementById('materialFoto');
	
	if(catBlock)
		block = catBlock;
	else if(homeBlock)
		block = homeBlock;
	else if(colorBlock)
		block = colorBlock;
	else if(colorFotoBlock)
		block = colorFotoBlock;
		
	if(block)
	{
		var goods_list = block.getElementsByTagName('li');
		var maxheight = 0;
		for (i = 0; goods_list.length > i; i++)
		{
			if(goods_list[i].offsetHeight > maxheight)
				maxheight = goods_list[i].offsetHeight;
		}
		for (i = 0; goods_list.length > i; i++)
		{
			goods_list[i].style.height = maxheight;
		}
	}
	else
		return false;
}