function chng_menu_on(TDid,id)
{
	document.getElementById(TDid).style.backgroundImage='url("images/BG_Bar_On.gif")'
	document.getElementById(id).style.color='#030303'
}

function chng_menu_off(TDid,id)
{
	document.getElementById(TDid).style.backgroundImage='url("images/BG_Bar.gif")'
	document.getElementById(id).style.color='#fafafa'
}





//תפריט שנפתח מעל האתר//

function topMenu(menuId,id)
{
	var obj = document.getElementById(menuId)
	if (id==1)
	{
	obj.style.visibility = 'visible';
	obj.style.display = 'block';
	}
	
	if (id==0)
	{
	obj.style.visibility = 'hidden';
	obj.style.display = 'none';
	}
}
