<!--
	function random_testimonial(){
			  var quote=new Array()
			  quote[1]="Very helpful and motivational approach to our campaign. Great to find such a professional business in Cornwall"
			  quote[2]="The team remain cheerful even when asked to do projects in unrealistic timescales.  Thanks for all your help and co-operation!"
			  quote[3]="Ahead of timetable dates. Great customer care"
			  quote[4]="Nothing but excellent service"
			  quote[5]="Thank you for all your many weeks of dedication.  We are very impressed with the results and will be back very soon"
			  quote[6]="The website has proved particularly effective in gaining new clients. Thank you for all your help"
			  quote[7]="In addition to our hosting services, ElfordNet continues to help and develop our business online.  The business-like approach has seen our sales grow significantly"
	
			  var rand1=random_number()
			  if(rand1<=0){rand1=1}
			  document.write('<div class="comments nopad"><div class="ccomment_top"></div><div class="ccomment_middle">&quot;'+quote[rand1]+'...&quot;</div><div class="ccomment_bottom ccomment"></div></div>')
			
			  
			  var rand2=check2(rand1)
			document.write('<div class="comments"><div class="ccomment_top"></div><div class="ccomment_middle">&quot;'+quote[rand2]+'...&quot;</div><div class="ccomment_bottom ccomment"></div></div>')			  
			  
			  var rand3=check3(rand1,rand2)
	 		  document.write('<div class="comments"><div class="ccomment_top"></div><div class="ccomment_middle">&quot;'+quote[rand3]+'...&quot;</div><div class="ccomment_bottom ccomment"></div></div>')
				 
	}
			 
			
			 
			  function check3(rand1,rand2){
				rand3=random_number();
				  if(rand3==0){
					rand3=1
				  }
				  if(rand3==rand1 || rand3==rand2){
						  check3(rand1,rand2);
				  } 
				  return rand3
			  }
			  
			 function check2(rand1){
				rand2=random_number();
				  if(rand2==0){
					rand2=1
				  }
				  if(rand2==rand1){
						  check2(rand1);
				  } 
				  return rand2
			  }
			  
			 function random_number(){
				return Math.floor(Math.random()*8)
		      }
			  
			   random_testimonial()
//-->