<?php
$page_name = "Amaretto Balls";
$menu_type = "food";
$menu_name = "Amaretto Balls";
$blog_num = 3;
$page_rate = 9;
$page_tags = array();
$page_date = "July 21, 2011";
include_once("./files/head.php");

echo "<p>Thanks Kathy for this one...Makes 4-5 dozen.</p>\n";

echo "<h3>Stuff to put in</h3>\n";
echo "<ul>\n";
  echo "<li>1 can <span class=\"red\"><strong>condensed 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><span class=\"red\"><strong>ground almonds</strong></span>&nbsp;&nbsp;&nbsp;(lots)</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>condensed 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 "<li>Shape into balls and roll in <span class=\"red\"><strong>ground almonds</strong></span>.</li>\n";
  echo "<li>Store for 24-48 hours before serving.</li>\n";
echo "</ol>\n";

include_once("./files/close.php");

?>