        //scroller width
        var swidth=210;

        //scroller height
        var sheight=100;

        //background color
        var sbcolor='#99ff33';

        //scroller's speed
        var sspeed=1;

        var msg=''

        //Your messages go below:


        msg +=
		
		'<ul>'+
        '<li><h2>Velux Sunrooms</h2><span class="bolder_blue">Find out more about the benefits of natural daylight, to your health and your pocket - the next concept in modern living.</span></li>'+
        '<li><a href="http://www.velux.co.uk/extensions/" target="_blank">Read more information...</a></li><br /></ul>'+  
        
		'<ul>'+
        '<li><h2>Considering Solar Panels?</h2><span class="bolder_blue">You can cut down on fuel bills and do your bit for the environment.</span></li>'+
        '<li><a href="solar_panels.php">Read more information...</a></li><br /></ul>'+   
		
		'<ul>'+
        '<li><h2>Want to see what we\'ve done?</h2><span class="bolder_blue">With over 15,000 satisfied customers and nearly 40 years experience, your\'re in good hands.</span></li>'+
        '<li><a href="gallery-pix.php">Take a look at our showcase...</a></li><br /></ul>'+  
	
		'<ul>'+
        '<li><span class="bolder_blue">Don\'t just take our word for it!</span></li>'+
        '<li><a href="testimonials.php">Read our customer\'s opinion...</a></li><br /></ul>'+  
	
		'<ul>'+
        '<li><h2>Garage conversions!!</h2></li>'+
        '<li><span class="bolder_blue">It could be the ideal space for a guest suite, home office or studio...</span></li><br /></ul>'+  
		
		'<ul><li><h2>Services provided include:</h2></li></ul>'+  
		'<ul id="newslist">'+
        '<li><span class="bolder_blue">Loft ladders supplied and fitted</span></li>'+ 
		'<li><span class="bolder_blue">Storage areas boarded out</span></li>'+ 
		'<li><span class="bolder_blue">Supply and install Velux windows</span></li>'+ 
		'<li><span class="bolder_blue">Got your own drawing? Want the experts to build your loft?</span></li>'+ 
		'<li><span class="bolder_blue">House re-wires</span></li>'+ 
		'<li><span class="bolder_blue">Central heating systems installed</span></li>'+ 
		'<li><span class="bolder_blue">Student accommodation refurb experts</span></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 += 10;
                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()",60)
                }
                else{
                        iediv.style.pixelTop=sheight
                        ieslide()
                }
        }
        
        function ns6marquee(whichdiv){
                ns6div=eval(whichdiv)
                sheight += 10;
                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()",60)
                }
                else {
                        ns6div.style.top = sheight + "px";
                        ns6slide()
                }
        }