<!--
 	// Scrolling text string.
	var strText="Dress Up Your Meals with Dressed in Style and Dressed to Grill - Dodelin Gourmet Products Made in the USA"; 
	// Length of the text
	var intText=strText.length; 
	// Speed of the scroll 
	var intSpeed=40; 
	// Width of the scrolling area.
	var intWidth=100; 
	var intPos=1-intWidth;
         function scroll()
         {
           // Initialize the string to be printed.
           intPos++;
           var strScroll="";
           // Move to the right in the string.
           if (intPos==intText)
           {
             // Start over if the string is done.
             intPos=1-intWidth;
           }
           // Scrolling
           if (intPos<0)
           {
           // Add spaces to beginning if necessary.
			 for (var i=1; i<=Math.abs(intPos); i++)
             {
               strScroll=strScroll+" ";
             }
             strScroll=strScroll+strText.substring(0, intWidth-i+1);
           }
           else
           {
           strScroll=strScroll+strText.substring(intPos,intWidth+intPos);
           }
           window.status = strScroll;
           setTimeout("scroll()", intSpeed);
         }
          scroll();
-->

