
   //scroller width
        var swidth=202;

        //scroller height
        var sheight=231;

        //background color
        var sbcolor='#CCB873';

        //scroller's speed
        var sspeed=2;

        var msg=''

        //Your messages go below:
		
		//items
        msg +=
		

			
            '<ul><li><a href="news_releases.html"><br>New Product Launch – March 2009</a></li>'+
            '<li>Old Dutch Foods Canada launched 6 new exciting and flavourful products on March 2, 2009!  This year’s products are more exciting than ever! Living a healthy lifestyle has become a common goal for many Canadians. Old Dutch has just made it even easier to do so with the choice of 4 new Old Dutch Snack Wise™ offerings!</li>'+
            '<li> </li></ul>'+
			'<div class="tickerDivider"></div>'+
					
            
			'<ul><li><a href="news_releases.html"><br>Old Dutch Scores with the CHL</a></li>'+
            '<li>The Canadian Hockey League announced its new corporate partnership with Old Dutch Foods. The multi-year agreement will also see Old Dutch Foods become a partner with the three regional leagues of the CHL; the Western Hockey League, Ontario Hockey League and Quebec Major Junior Hockey League.<a href="chlnewsagreement.html" style="font-size:11px;"><br>Read More</a></li>'+
            '<li> </li></ul>'+
			'<div class="tickerDivider"></div>'+
			
			
            /*'<ul><li><a href="#"><br>New Product Launch</a></li>'+
            '<li>Old Dutch has added a spicy new flavour to it&rsquo;s Arriba<sup>&reg;</sup> Tortilla Chip line-up, Salsa Picante. The subtle tomato, chili pepper, onion and herb fusion is a fiesta for your taste buds!</sup></li>'+
            '<li> </li></ul>'+  
            '<div class="tickerDivider"></div>'+*/
			
			'<ul><li><a href="news_releases.html#support"><br>Supporting Active Communities</a></li>'+
            '<li>Old Dutch has been proud to support Active Communities for over 50 years. Since 2004, Old Dutch Foods Ltd. has donated over $625,000 to a children’s charity encouraging sport.  Old Dutch and KidSport™, believe that no child should be left on the sidelines. The contributions made from Old Dutch have given thousands of Canadian children a chance to play.<a href="news_releases.html#support" style="font-size:11px;"><br>Read More</a></li>'+
            '<li> </li></ul>'+
			'<div class="tickerDivider"></div>'+
			
			'<ul><li><a href="news_releases.html#creamy"><br>Creamy Dill Wins Award!</a></li>'+
            '<li>Old Dutch Foods Ltd. has been awarded the 2007 Best New Food Product Award for their Rip-L Creamy Dill Potato Chips. Consumers picked the latest and greatest and voted the Old Dutch <br />Rip-L Creamy Dill as #1.<a href="news_releases.html#creamy" style="font-size:11px;"><br>Read More</a></li>'+
            '<li> </li></ul>'+
			'<div class="tickerDivider"></div>'+
			
        '';

        //End of your messages
        // Begin the ticker code

        var resumesspeed=sspeed
        function start() {
                if (document.all) iemarquee(ticker);
                else if (document.getElementById)
                        ns6marquee(document.getElementById('ticker'));
        }
        
        function iemarquee(whichdiv){
                iediv=eval(whichdiv)
                sheight += -240;
                iediv.style.pixelTop=sheight
                iediv.innerHTML=msg 
                sizeup=iediv.offsetHeight
                ieslide()
        }
        
        function ieslide(){
                if (iediv.style.pixelTop>=sizeup*(-1)){
                        iediv.style.pixelTop-=sspeed
                        setTimeout("ieslide()",100)
                }
                else{
                        iediv.style.pixelTop=sheight
                        ieslide()
                }
        }
        
        function ns6marquee(whichdiv){
                ns6div=eval(whichdiv)
                sheight += -240;
                ns6div.style.top=sheight + "px";
                ns6div.innerHTML=msg
                sizeup=ns6div.offsetHeight
                ns6slide()
        }
        function ns6slide(){
                if (parseInt(ns6div.style.top)>=sizeup*(-1)){
                        theTop = parseInt(ns6div.style.top)-sspeed
                        ns6div.style.top = theTop + "px";
                        setTimeout("ns6slide()",100)
                }
                else {
                        ns6div.style.top = sheight + "px";
                        ns6slide()
                }
        }
//-->