/* AUTHOR: Cooking2000 (http://www.cooking2000.com) */
/* CREATION DATE: 06/28/02 */
/* REVISION DATE: 02/21/03 */

var myurltotest = location.href;
var d=document;
	
d.write('<a href="../../index.html">Home&nbsp;</a>&gt;&nbsp;');
if (myurltotest.match("cocktail") != null)
	{
	d.write('<a href="../cocktail.htm">Cocktails</a>');
	}

if (myurltotest.match("cheese/") != null)
	{
	d.write('<a href="../cheese.htm">Cheeses</a>');
	} 

if (myurltotest.match("starter") != null)
	{
	d.write('<a href="../starter.htm">Starters</a>');
	} 

if (myurltotest.match("sauce") != null)
	{
	d.write('<a href="../sauce.htm">Sauces</a>');
	}
	

if (myurltotest.match("salad") != null)
	{
	d.write('<a href="../salad.htm">Salads</a>');
	}
	

if (myurltotest.match("fish") != null)
	{
	d.write('<a href="../fish.htm">Fishes</a>');
	}
	
if (myurltotest.match("meat") != null)
	{
	d.write('<a href="../meat.htm">Meats</a>');
	}
	
if (myurltotest.match("dish") != null)
	{
	d.write('<a href="../dish.htm">Dishes</a>');
	}
	
if (myurltotest.match("veget") != null)
	{
	d.write('<a href="../veget.htm">Vegetables</a>');
	}

if (myurltotest.match("dessert") != null)
	{
	d.write('<a href="../dessert.htm">Desserts</a>');
	}

d.write('<hr noShade size="1">');
