var objParent='';
var objChild='';
var ftimer='';
var vertCoord = new Array(15,66,117,168,219,253);

function posChild(fromObj)
{
divClose();
objAncor=document.getElementById('models_menu');
positionLeft=objAncor.offsetLeft;
// positionTop=objAncor.offsetTop;
objChild=document.getElementById('ch'+fromObj);
objChild.style.left=+53;
//objChild.style.top=vertCoord[fromObj-1];
objChild.style.display='block';
objAncorTop=document.getElementById('imgtop'+fromObj);
objAncorBot=document.getElementById('imgbot'+fromObj);
childContHeight=objAncorBot.offsetTop - objAncorTop.offsetTop;
//alert(childContHeight);
// если дети не влезают -- переворачиваем.
if((vertCoord[fromObj-1] + childContHeight) > 299){
	// 35px -- высота иконки марки, на нее идет смещение при перевороте.
	objChild.style.top=vertCoord[fromObj-1] + 35 - childContHeight;
	objAncorTopFile=document.getElementById('imgtopfile'+fromObj);
	objAncorBotFile=document.getElementById('imgbotfile'+fromObj);
	objAncorTopFile.src='/design/models_menu/mod-menu-b_con.gif';
	objAncorBotFile.src='/design/models_menu/mod-menu-t_con.gif';
}
//alert(positionLeft+':'+vertCoord[fromObj-1]);
// alert(objChild.style.width+'; '+objChild.style.height+'\n =='+childContHeight[fromObj-1]);
//alert(vertCoord[fromObj-1] + 40);
if (ftimer!='') window.clearTimeout(ftimer);
}

function visChild()
{
ftimer = window.setTimeout("divClose()",500);
}

function divClose()
{
if (objChild!='') objChild.style.display='none';
}
