 //scroller width
        var swidth=180;

        //scroller height
        var sheight=75;

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

        //scroller's speed
        var sspeed=1;

        var msg=''

        //Your messages go below:


        msg +=
		
		
			'<ul><li><a href="news19_innovation.html" title="">BETA International rewards innovation</a></li>'+
            '<li></li></ul>'+ 
			
			'<ul><li><a href="news16_coc.html" title="">Caught on Camera</a></li>'+
            '<li></li></ul>'+ 
			
			'<ul><li><a href="news17_earnasyougo.html" title="">Earn As You Learn</a></li>'+
            '<li></li></ul>'+ 
			
			'<ul><li><a href="news18_fashionable.html" title="">Fashionable spectrum</a></li>'+
            '<li></li></ul>'+ 
			
			'<ul><li><a href="news15_pet.html" title="">Surge in pet products at BETA International</a></li>'+
            '<li></li></ul>'+ 
			
			'<ul><li><a href="news14_homes.html" title="">Homes for BETA International horses</a></li>'+
            '<li></li></ul>'+ 
		
		    '<ul><li><a href="news13_merial.html" title="">Merial returns to BETA International</a></li>'+
            '<li></li></ul>'+ 
			
		    '<ul><li><a href="news12_npg.html" title="">New sponsor for BETA International product showcase</a></li>'+
            '<li></li></ul>'+ 
			
		    '<ul><li><a href="news11_coaches.html" title="">Free coach travel to BETA International</a></li>'+
            '<li></li></ul>'+  
			
		    '<ul><li><a href="news10_newsponsor.html" title="">Refreshing new sponsor at BETA International</a></li>'+
            '<li></li></ul>'+  
		
            '<ul><li><a href="news9_fashion.html" title="">Magazines sponsor BETA International Fashion Show for sixth year</a></li>'+
            '<li></li></ul>'+  		
        
            '<ul><li><a href="news8_disabled.html" title="">BETA International supports Riding for the Disabled</a></li>'+
            '<li></li></ul>'+                     
            
            '<ul><li><a href="news7_71.html" title="">BETA International 2010 "more than 71% sold"</a></li>'+
            '<li> </li></ul>'+  
                        
            '<ul><li><a href="news5_fresh.html" title="">BETA International 2009 gives trade "fresh impetus"</a></li>'+
            '<li> </li></ul>'+  
			
            '<ul><li><a href="news4_beststands.html" title="">Best stands at BETA International 2009</a></li>'+
            '<li> </li></ul>'+  
			
            '<ul><li><a href="news3_rewards.html" title="">BETA International 2009 rewards innovation</a></li>'+
            '<li> </li></ul>'+  
			
	        '<ul><li><a href="news2_rates.html" title="">BETA International holds stand rates for 2010</a></li>'+
            '<li> </li></ul>'+  
			
	        '<ul><li><a href="news1_abbey.html" title="">Abbey Saddlery to sponsor BETA International 2010</a></li>'+
            '<li></li>'+
            '<li> </li></ul>'+  		

        '';

        //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 += 1;
                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()",90)
                }
                else{
                        iediv.style.pixelTop=sheight
                        ieslide()
                }
        }
        
        function ns6marquee(whichdiv){
                ns6div=eval(whichdiv)
                sheight += 1;
                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()",90)
                }
                else {
                        ns6div.style.top = sheight + "px";
                        ns6slide()
                }
        }
