<!--
 //scroller width
var swidth=250;

//scroller height
var sheight=100;

//background color 
var sbcolor="#FFFFFF";

//scroller's speed
var sspeed=2;

var msg='';

//Your messages go below:

				
msg=	'<ul><li><a href="http://www.dscleaning.co.uk" target="_blank" title="Testimonials">08/02/2009</a></li>'+
		'<li>"Miss Dalia of DS Cleaning Services has worked for Barnard Marcus for last 11 months.She has always been punctual and reliable and we fund her services very satisfactory and professional.I would not hesitate to recomend her to anyone." Amy Wang-Telford Senior Lettings Negotiator </li>'+
		'<li>&nbsp;</li></ul>'+
//MSG 2
'<ul><li><a href="http://www.dscleaning.co.uk" target="_blank" title="Testimonials">12/03/2009</a></li>'+
'<li>Im extremely satisfied with DS cleaning services.  The job is done perfectly and  professionally every time. Also they are really flexible with scheduling, which is very helpful for me.  -- Marco. S. Fulham</li>'+
		'<li>&nbsp;</li></ul>'+
		
		'<ul><li><a href="http://www.dscleaning.co.uk" target="_blank" title="Testimonials">21/04/2009</a></li>'+
'<li>I love coming home to a spotless and tidy house.  I love having the entire house clean at the same time.  The idea of rotating the more specialized cleaning tasks such as dusting window sills or vacuuming furniture makes a lot of sense.  That leaves even fewer tasks for me to do!  DS Cleaning takes my concerns and suggestions seriously and responds to them promptly. – Barbara,Putney</li>'+
		'<li>&nbsp;</li></ul>'+

'<ul><li><a href="http://www.dscleaning.co.uk" target="_blank" title="Testimonials">07/05/2009</a></li>'+
'<li>We are very pleased with the person provided by DS cleaning services, who is maintaining our home currently.  She is thorough, courteous and professional. Always flexible , as we need her to be, which is great for us. It makes things so much easier. -- Natasha, Chiswick</li></ul>';

//End of your messages


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()
	}
}
// -->