function toggleIngred(id) {
	var button = document.getElementById("ainesosat_show"+id);
	var text = document.getElementById("ainesosat"+id);

	if (text.style.display == "none") {
		//hide button, show text
		button.style.display = "none";
		text.style.display = "block";
	} else {
		//default to hide text
		button.style.display = "block";
		text.style.display = "none";
	}
}