        //scroller width
        var swidth=500;

        //scroller height
        //var sheight=170;
		var sheight=70;

        //background color
        var sbcolor='fffff';

        //scroller's speed
        var sspeed=1;

        var msg=''

        //Your messages go below:


        msg +=
        
            '<a href="keyfeatures.html" target="_blank" class="anouncement_title">OsCommerce </a> <br> Start selling online with your own ecommerce store. OsCommerce, now included in the application installer <br><br>'+

		//'<a href="legend.html" target="_blank" class="anouncement_title">Anti Spam </a> <br> New anti spam filtering service with advance filtering capabilities is now included in all our hositng plans for FREE! <br> <br>'+            
        
       // '<a href="#" class="anouncement_title">Ryan Crest - domainwhitepages.com <br> </a>Dispatch of Armys website turned out great. We did not know what to expect in developing a website. The whole process turned out better than we expected and e-Globalhosting was easy to work with, very professional, efficient and provided a quick turn-around response time to our needs. It has truly been a pleasure working with e-Globalhosting!<br><br>' +  
             
       // '<a href="#" class="anouncement_title">Usain Bolt - beijing.com <br> </a>We have used your hosting services as our hosting provider for the past 4 years and have been impressed with your services. Well done e-globalhosting.<br><br>' +       
                 
			'<a href="keyfeatures.html" target="_blank" class="anouncement_title">Application Installer </a> <br> One click install applications. WordPress, SMF and many more </a> <br> <br>'+
                        			
            '<a href="#" class="anouncement_title">Warning About Domain Renewal Scam</a> <br> This is a friendly reminder to you on a scam email from a company named Domain Renewal SA regarding domain renewal. <br> <br>'+
                                         			
			'<a href="keyfeatures.html" target="_blank"  class="anouncement_title">Multi Domain hosting capabilities </a> <br> Get more value for your money <br><br>'+
			'';

        //End of your messages
        // Begin the ticker code

        var resumesspeed=sspeed
        
        function start() {
                if (document.all) iemarquee(anouncement);
                else if (document.getElementById)
                        ns6marquee(document.getElementById('anouncement'));
        }
        
        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()",100)
                }
                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()",100)
                }
                else {
                        ns6div.style.top = sheight + "px";
                        ns6slide()
                }
        }
