   <!--
   function colorize(t) {
      return '<div style="color: #2D9E41; font-weight: bold;">' + t + '</div>';
   }

   mulberry = "/";
   this_url = location.pathname;

   submenu = "";

   if (this_url == mulberry) { this_url = this_url + "index.html"}


   document.write('<ul>');

   lt = "HOME";
   if (this_url == mulberry + "index.html") { lt = colorize(lt); }
   document.write('<ul><li><a href="index.html">' + lt + '</a>');

   document.write('<ul>');
   lt = "Who we are";
   if (this_url == mulberry + "about.html") { lt = colorize(lt); }
   document.write('<li><a href="about.html">' + lt + '</a></li>');
   document.write('</ul>');

   document.write('<ul>');
   lt = "Privacy policy";
   if (this_url == mulberry + "privacy_policy.html") { lt = colorize(lt); }
   document.write('<li><a href="privacy_policy.html">' + lt + '</a></li>');
   document.write('</ul>');

   document.write('</li>');

   lt = "PUBLICATIONS";
   if (this_url == mulberry + "publications.html") { lt = colorize(lt); }
   document.write('<li><a href="publications.html">' + lt + '</a>');
   document.write('<ul>');




   lt = "Investment Guide";
   if (	this_url == mulberry + "guide.html" || 
	this_url == mulberry + "g_preview.html" ||
	this_url == mulberry + "custom_guide.html" ||
	this_url == mulberry + "pricing_guide.html") {

	if (this_url == mulberry + "guide.html") {
		lt = colorize(lt);
	}

	preview = "Preview";
	if (this_url == mulberry + "g_preview.html") {
		preview = colorize(preview);
	}
	preview = "<ul><li><a href='g_preview.html'>" + preview + "</a></li></ul>";

	custom = "Customization";
	if (this_url == mulberry + "custom_guide.html") {
                custom = colorize(custom);
        }
	custom = "<ul><li><a href='custom_guide.html'>" + custom + "</a></li></ul>";

	pricing = "Pricing";
	if (this_url == mulberry + "pricing_guide.html") {
                pricing = colorize(pricing);
        }
	pricing = "<ul><li><a href='pricing_guide.html'>" + pricing + "</a></li></ul>";

	submenu = preview + custom + pricing;
   }

   document.write('<li><a href="guide.html">' + lt + '</a>');
   if (submenu) {
	document.write(submenu);
	submenu = "";
   }
   document.write("</li>");





   lt = "Newsletter";
   if (	this_url == mulberry + "newsletter.html" || 
	this_url == mulberry + "nl_preview.html" ||
	this_url == mulberry + "custom_newsletter.html" ||
	this_url == mulberry + "pricing_newsletter.html") { 

	if (this_url == mulberry + "newsletter.html") {
                lt = colorize(lt);
        }

	preview = "Preview";
        if (this_url == mulberry + "nl_preview.html") {
                preview = colorize(preview);
        }
        preview = "<ul><li><a href='nl_preview.html'>" + preview + "</a></li></ul>";

        custom = "Customization";
        if (this_url == mulberry + "custom_newsletter.html") {
                custom = colorize(custom);
        }
        custom = "<ul><li><a href='custom_newsletter.html'>" + custom + "</a></li></ul>";

        pricing = "Pricing";
        if (this_url == mulberry + "pricing_newsletter.html") {
                pricing = colorize(pricing);
        }
        pricing = "<ul><li><a href='pricing_newsletter.html'>" + pricing + "</a></li></ul>";

        submenu = preview + custom + pricing;
   }

   document.write('<li><a href="newsletter.html">' + lt + '</a>');
   if (submenu) {
        document.write(submenu);
        submenu = "";
   }
   document.write("</li>");




   lt = "Presentation";
   if (	this_url == mulberry + "slideshow.html" || 
	this_url == mulberry + "ss_preview.html" ||
	this_url == mulberry + "custom_slideshow.html" ||
	this_url == mulberry + "pricing_slideshow.html") { 

        if (this_url == mulberry + "slideshow.html") {
                lt = colorize(lt);
        }

        preview = "Preview";
	url = "ss_preview.html";
        if (this_url == mulberry + url) {
                preview = colorize(preview);
        }
        preview = "<ul><li><a href='" + url + "'>" + preview + "</a></li></ul>";

        custom = "Customization";
	url = "custom_slideshow.html";
        if (this_url == mulberry + url) {
                custom = colorize(custom);
        }
        custom = "<ul><li><a href='" + url + "'>" + custom + "</a></li></ul>";

        pricing = "Pricing";
	url = "pricing_slideshow.html";
        if (this_url == mulberry + url) {
                pricing = colorize(pricing);
        }
        pricing = "<ul><li><a href='" + url + "'>" + pricing + "</a></li></ul>";

        submenu = preview + custom + pricing;

   }
   document.write('<li><a href="slideshow.html">' + lt + '</a>');
   if (submenu) {
        document.write(submenu);
        submenu = "";
   }
   document.write("</li>");








   lt = "Samples";
   if (this_url == mulberry + "samples.php") { lt = colorize(lt); }
   document.write('<li><a href="samples.php">' + lt + '</a></li>');

   document.write('</ul></li></li>');


   lt = "HOW TO ORDER";
   if (this_url == mulberry + "order.php") { lt = colorize(lt); }
   document.write('<li><a href="order.php">' + lt + '</a></li>');



   //  Temp
   lt = "NOW AVAILABLE";
   document.write('<li>' + lt );
   document.write('<ul>');

   lt = "Newsletter Web Edition";
   document.write('<li><a style="white-space: nowrap;" href="newsletter">' + lt + '</a></li>');



   document.write('</ul>');
   document.write("</li>");
   //  End Temp



   document.write('</ul');
-->

