function menuClickMain(PAG_id)
{
	if(window.lastID)
		if(get_object('subMenu_'+lastID))
			get_object('subMenu_'+lastID).style.display='none';
	if(get_object('subMenu_'+PAG_id))
		get_object('subMenu_'+PAG_id).style.display='block';
	window.lastID=PAG_id;
}

function menuOnLoad(pg,pr,lg)
{
	if (pr != 0)
		menuClickMain(pr);
	else
		menuClickMain(pg);
	
	if (pg != '')
		{
			if (pr!=0)
				num=pr;
			else
				num=pg;
			
			if(get_object('menuA_'+num))
			{
				get_object('menuA_'+num).style.background='none';
				get_object('menuA_'+num).style.height='2.5em';
				get_object('menuA_'+num).style.lineHeight='2.5em';
				get_object('menuA_'+num).style.color='#000';
				get_object('menuA_'+num).style.padding='0 10px';
			}
			if(get_object('menuLi_'+num))
			{
				get_object('menuLi_'+num).style.backgroundImage='url(km/design/menu/mtp_55_3.gif)';
				
				
				get_object('menuLi_'+num).style.backgroundRepeat='no-repeat';
				get_object('menuLi_'+num).style.backgroundPosition='top right';
				get_object('menuLi_'+num).style.height='2.5em';
				get_object('menuLi_'+num).style.marginTop='0';
			}
		}
}

function menuMouseOver(PAG_id,Parent_ID)
{
	/*if (Parent_ID==0)
		if(get_object('menuLi_'+PAG_id))
			get_object('menuLi_'+PAG_id).style.backgroundColor='#ac0032';
	if (Parent_ID!=0)
		if(get_object('subMenuLi_'+PAG_id))
			get_object('subMenuLi_'+PAG_id).style.backgroundColor='#ac0032';*/
}

function menuMouseOut(PAG_id,Parent_ID)
{

	/*if (Parent_ID==0)
		if(get_object('menuLi_'+PAG_id))
			get_object('menuLi_'+PAG_id).style.backgroundColor='#7d7d7d';
	if (Parent_ID!=0)
		if(get_object('subMenuLi_'+PAG_id))
			get_object('subMenuLi_'+PAG_id).style.backgroundColor='#7d7d7d';*/
}
