// JavaScript Document
function Testimonials(){

var r_text = new Array ();

r_text[0] = "Sara and I have settled in florida really well, the business is going very good indeed. We are both very pleased...";
r_text[1] = "I believe that the money paid to A New Life Abroad was money well spent and I would recommend them to anyone wanting to make their dreams come true...";
r_text[2] = "I would not hesitate to recommend you to others wishing to emigrate. I now have my visa and looking forward to going to the States...";
r_text[3] = "We cannot praise you enough and would recommend you to any one who asked. We have now had our visa granted and are off in July to begin our new life...";
r_text[4] = "I would definately recommend you to anyone that is thinking of emigrating not only to Australia but many other countries...";

 

var i = Math.floor(5*Math.random())

document.write( "<p align = 'justify'>"+ r_text[i] +"</p><a href = 'testimonials.htm'>Read more </a>");

}
//-->
