
        //scroller width
        var swidth=120;

        //scroller height
        var sheight=250;

        //background color
        var sbcolor='#ffffff';

        //scroller's speed
        var sspeed=2;

        var msg=''

        //Your messages go below:


        msg +=
		
			'<p class="boxNewsText"><span class="boxBlueText">01/2010</span><br />SOL joins Gunter area Chamber of Commerce</p>'+
			
			'<p class="boxNewsText"><span class="boxBlueText">09/2009</span><br />Effective 10/15/09 Late Fees increase to 15% of past due amount.  See Terms of Service, Billing Policy.</p>'+
			
			'<p class="boxNewsText"><span class="boxBlueText">07/2009</span><br />New tower goes live providing high speed coverage to Southern Collinsville and Tioga areas</p>'+
			
			'<p class="boxNewsText"><span class="boxBlueText">07/2009</span><br />New neighborhood hotspot goes live in Hidden Lakes Ranch of Gunter providing superior coverage for neighborhood</p>'+
			
			'<p class="boxNewsText"><span class="boxBlueText">04/2009</span><br />SOL launches new SmartMail email server</p>'+  
            			
			'<p class="boxNewsText"><span class="boxBlueText">02/2009</span><br />SOL Broadband launches  new licensed back haul link between Aubrey, Texas and Celina, Texas providing more bandwidth for our customers in Collin County</p>'+ 
			
			'<p class="boxNewsText"><span class="boxBlueText">02/2009</span><br />SOL Broadband looking for landowners outside of city limits interested in land leases for tower locations contact <a href="mailto:sales@solbroadband.com">sales@solbroadband.com</a></p>'+ 
			
			'<p class="boxNewsText"><span class="boxBlueText">11/2008</span><br />SOL Brand New internet tower goes live in Sanger, Texas with coverage for Sanger, Valley View and Northern Krum </p>'+   
			
            '<p class="boxNewsText"><span class="boxBlueText">10/2007</span><br />Help Me Understand My Internet Options<br /><a href="documents/HelpMeArticle.pdf" target="_blank">:: Read More ::</a></p>'+   
            
            '<p class="boxNewsText"><span class="boxBlueText">08/2007</span><br />SOL Brand New internet tower goes live in Celina, Texas</p>'+
			
			'<p class="boxNewsText"><span class="boxBlueText">08/2007</span><br />SOL Brand New internet tower goes live in Gunter, Texas</p>'+
            

        '';

        //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 += 50;
                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 += 50;
                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()
                }
        }


