// toggleSections.js

function showRecipe(obj){
	obj.style.display = "block";
}

function hideAllRecipes()
{
	   whatsnew.style.display = "none";
	   basic.style.display = "none";
	   snacks.style.display = "none";
	   entrees.style.display = "none";
	   soups.style.display = "none";
	   gravies.style.display = "none";
	   sauces.style.display = "none";
}
