<?php
$page_name = "Ammaretto Ice Cream Topping";
$menu_type = "food";
$menu_name = "Amaretto IC Topping";
$blog_num = 29;
$page_rate = 7;
$page_tags = array();
$page_date = "July 21, 2011";
include_once("./files/head.php");

echo "<p>This is Kathy's amaretto ball recipe...almost...I screwed up and bought evaporated milk, luckily the mistake goes amazing on ice cream (super yummy fudge topping).</p>\n";

echo "<h3>Stuff to put in</h3>\n";
echo "<ul>\n";
  echo "<li>1 can <span class=\"red\"><strong>evaporated milk</strong></span></li>\n";
  echo "<li>1/4 cup <span class=\"red\"><strong>amaretto</strong></span></li>\n";
  echo "<li>1/2 tsp <span class=\"red\"><strong>almond extract</strong></span></li>\n";
  echo "<li>2 1/2 cups <span class=\"red\"><strong>semi-sweet chocolate chips</strong></span>&nbsp;&nbsp;&nbsp;(525g)</li>\n";
echo "</ul>\n";

echo "<h3>How to put it all together</h3>\n";
echo "<ol>\n";
  echo "<li>Melt <span class=\"red\"><strong>chocolate</strong></span> and <span class=\"red\"><strong>evaporated milk</strong></span> on low.</li>\n";
  echo "<li>Remove from heat and stir in <span class=\"red\"><strong>amaretto</strong></span> and <span class=\"red\"><strong>almond extract</strong></span>.</li>\n";
  echo "<li>Chill 2 hours.</li>\n";
echo "</ol>\n";

include_once("./files/close.php");

?>