function toggleFieldsNow( Mid, Iid ) {
		   		 var e = document.getElementById( Mid );
			 		var c = document.getElementById( Iid );
		    if ( e.style.visibility == 'visible' ||  e.style.display == 'block' ) {
		      e.style.visibility = 'hidden';
		      e.style.display    = 'none';
			  c.style.visibility = 'visible';
		      c.style.display    = 'block';
		    } else {
		      e.style.visibility = 'visible';
		      e.style.display    = 'block';
			  c.style.visibility = 'hidden';
		      c.style.display    = 'none';
		    }	
			
		  }
		  
		function getDietChoice(choice) {
		var ChoiceVar = choice;		
		document.FreeProfileForm.dietchoice.value = ChoiceVar		
		}
		
		
		
	$(document).ready(function(){	
		$(".toggleRecipe").each(function(index, aid){
			
			aid.click(function(){
	alert('hi');			
				this.text('Hide Recipe');
				$("recipe" + index).show();
			});
			
		});
	});	
