shopcategoriesInit();

function shopcategoriesInit()
{
shopcategoriesSetFunctions(document.body);
}

function shopcategoriesSetFunctions(menuObject)
{
var re1=/ig_shop_categories_item/;
	for(var child = menuObject.firstChild; child; child = child.nextSibling)
	{
		if(child.className)
		{
			if(child.className.search(re1)!=-1)
			{
			child.onclick=shopcategoriesClick;
				if(isMSIE || isOpera) 
				{
				child.style.cursor="hand";
				}
			}
		}
	shopcategoriesSetFunctions(child);
	}
}


function shopcategoriesClick(event)
{
event = event || window.event;
var elem = event.target || event.srcElement;
var elems=elem.getElementsByTagName('a');
	if(elems[0])
	{
	document.location.href=elems[0].href;
	}
}
