$(document).ready(function() {
						   
	// Hides the recipe by default
	$("a#showRecipe").hide();
	
	// Use the resulting collection length to determine if there is a recipe
	if ($(".recipe").length) {
		$("a#showRecipe").show();
	}
	
});
