function switchoff(gohere)
{
	parent.document.getElementById('_FoodMenu').height="0";
	parent.document.getElementById('_RecipeMenu').height="100%";
	parent.document.getElementById('_Body').src=gohere;
}
function switchon(gohere)
{
	parent.document.getElementById('_FoodMenu').height="100%";
	parent.document.getElementById('_RecipeMenu').height="0";
	parent.document.getElementById('_Body').src=gohere;
}

