<!-- Beginning of JavaScript -

var thissize=14
var qsize=16
var textfont="Arial"
var i_color=0
var i_testimonial=0
var lquot="\u201C"
var rquot="\u201D"

var textcolor= new Array()
textcolor[0] ="FFFFFF"
textcolor[1] ="E5F2F9"
textcolor[2] ="CEE9F7"
textcolor[3] ="BAE1F5"
textcolor[4] ="ACDCF4"
textcolor[5] ="A2D8F3"
textcolor[6] ="99D4F1"
textcolor[7] ="90CFEF"
textcolor[8] ="8ACDEE"
textcolor[9] ="83C9EC"
textcolor[10] ="7FC7EB"
textcolor[11] ="7BC5EA"
textcolor[12] ="75C1E7"
textcolor[13] ="70BFE6"
textcolor[14] ="6ABBE4"
textcolor[15] ="65B8E2"
textcolor[16] ="61B6E0"
textcolor[17] ="5DB4DF"
textcolor[18] ="5AB2DE"
textcolor[19] ="55AFDC"
textcolor[20] ="52ADDB"
textcolor[21] ="4FABD9"
textcolor[22] ="4CA9D8"
textcolor[23] ="48A7D6"
textcolor[24] ="45A5D5"
textcolor[25] ="43A4D4"
textcolor[26] ="40A2D3"
textcolor[27] ="3DA0D1"
textcolor[28] ="3A9DCF"
textcolor[29] ="369BCD"
textcolor[30] ="3399CC"


var testimonial = new Array()
testimonial[0]="...the only internet site to generate any serious response..."
testimonial[1]="...cutting out the agents has made the whole experience infinitely more friendly and efficient..."
testimonial[2]="...no-one can believe we've got a buyer so quickly and effortlessly..."
testimonial[3]="...we sold it on your site in just over a week - brilliant...!"
testimonial[4]="...people were fighting over the property, I could have sold it 10 times over..."
testimonial[5]="...our buyers sold THEIR house through you as well...!"
testimonial[6]="...better than any of the other internet sites I used..."
testimonial[7]="...excellent service, RIP estate agents..."
testimonial[8]="...we saved £8,000 for an outlay of just £89..."
testimonial[9]="...our estate agents are furious..."
testimonial[10]="...Brilliant!"

function morecolor() {		
	if (i_color <= textcolor.length-1) {
		if(document.all) {
                        zoomer.innerHTML="<span style='font-family:"+textfont+";font-size:"+thissize+"px;color:"+textcolor[i_color]+"'><b><big>"+lquot+"</big>"+testimonial[i_testimonial]+"<big>"+rquot+"</big></b></span>"	
		}
	
		if(document.layers) {
			document.zoomer.document.write("<span style='font-family:"+textfont+";font-size:"+thissize+"px;color:"+textcolor[i_color]+"'><b><big>"+lquot+"</big>"+testimonial[i_testimonial]+"<big>"+rquot+"</big></b></span>")
			document.close()
		}
		i_color++
		var my_timer=setTimeout("morecolor()",50)
	}
	else {
		i_color--
		clearTimeout(my_timer)
		var intermezzo=setTimeout("lesscolor()",1000)
	}
}

function lesscolor() {	
	if (i_color >= 0) {
		if(document.all) {
			zoomer.innerHTML="<span style='font-family:"+textfont+";font-size:"+thissize+"px;color:"+textcolor[i_color]+"'><b><big>"+lquot+"</big>"+testimonial[i_testimonial]+"<big>"+rquot+"</big></b></span>"
		}
	
		if(document.layers) {
			document.zoomer.document.write("<span style='font-family:"+textfont+";font-size:"+thissize+"px;color:"+textcolor[i_color]+"'><b><big>"+lquot+"</big>"+testimonial[i_testimonial]+"<big>"+rquot+"</big></b></span>")
			document.close()
		}
		
		i_color--
		var my_timer=setTimeout("lesscolor()",50)
	}
	else {
		i_testimonial++
		if (i_testimonial >= testimonial.length) {i_testimonial=0}
		i_color=0
		clearTimeout(my_timer)																				
		var intermezzo=setTimeout("morecolor()",1000)
	}
}

// - End of JavaScript - -->