          //scroller width
        var swidth=100;

        //scroller height
        var sheight=0;

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

        //scroller's speed
        var sspeed=2;

        var msg=''

        //Your messages go below:
		
		
		 msg +=
	
			'<ul><li class="title">Introducing our latest development - Greylea<BR></li>'+
			'<li class="summary">Ideally situated in idyllic Bowdon - Altrincham, Greylea is a luxurious 2 storey development complete with planning permission for an optional third storey.<BR></li>'+
			'<li class="scrollerlink"><a href="http://www.mayfieldhomes.co.uk/homes/home_details.asp?property_id=13" target="" title="">find out more</a></li>'+
            '</ul>'+  
						
			'<ul><li class="title">Announcing the arrival of Westfields, Hale<BR></li>'+
			'<li class="summary">A two storey five bedroom detached home set in approx a quarter of an acre. Internal floor area (excluding garage) approaching 4800 sq ft.<BR></li>'+
			'<li class="scrollerlink"><a href="http://www.mayfieldhomes.co.uk/homes/home_details.asp?property_id=12" target="" title="">read full story</a></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 += 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()
                }
        }