var comments_text = new Array();
var comments_from = new Array();

/* Testimonials */
comments_text[0] = "<p>Took alot of care, great service, thanks.</p>";
comments_from[0] = "<p>Tamara<br>Crestmead to Victoria Point</p>";

comments_text[1] = "<p>I would honestly recommend these guys to friends.</p>";
comments_from[1] = "<p>Carl<br>Sunnybank Hills to Crestmead</p>";

comments_text[2] = "<p>Brilliant effort, great service, good people.</p>";
comments_from[2] = "<p>Anthony<br>Annerley to Holland Park</p>";

comments_text[3] = "<p>Excellent workers with a great sense of humour.</p>";
comments_from[3] = "<p>Veronica<br>Forest Lake to Forest Lake</p>";

comments_text[4] = "<p>Great, no problems.</p>";
comments_from[4] = "<p>Shirley<br>Regents Park to Springfield Lakes</p>";

comments_text[5] = "<p>Good service, made moving a little less stressful.</p>";
comments_from[5] = "<p>Margaret<br>Hillcrest to Heritage Park</p>";

comments_text[6] = "<p>Guys were very careful and patient.</p>";
comments_from[6] = "<p>Joe<br>Carrara to Paddington</p>";

comments_text[7] = "<p>Very competent and good workers, will use again and tell friends needing to move.</p>";
comments_from[7] = "<p>June<br>Regents Park to Regents Park</p>";

comments_text[8] = "<p>Good blokes, honest, reliable, will definitely use again.</p>";
comments_from[8] = "<p>Wayne<br>Shailer Park to Cornubia</p>";

comments_text[9] = "<p>Good delivery, friendly people, able to move us at short notice.</p>";
comments_from[9] = "<p>Kate<br>Storage King Loganholme to Crestmead</p>";

comments_text[10] = "<p>A very flexible team and gave careful consideration to our delicate furniture.</p>";
comments_from[10] = "<p>Sherol<br>Springwood to Clontarf</p>";

comments_text[11] = "<p>Recommend your service. Awesome Guys! Handled our furniture with care.</p>";
comments_from[11] = "<p>Trish<br>Coopers Plains to Algester</p>";

comments_text[12] = "<p>A great job, very happy.</p>";
comments_from[12] = "<p>Mary<br>Seventeen Mile Rocks to Jamboree Heights</p>";

comments_text[13] = "<p>Good job, no damage, polite and helpful.</p>";
comments_from[13] = "<p>Nick<br>Tanah Merah to Cornubia</p>";

comments_text[14] = "<p>An excellent service provided by two enthusiastic young men.</p>";
comments_from[14] = "<p>Richard<br>Mount Ommaney to Mount Ommaney</p>";

comments_text[15] = "<p>Professional and very helpful throughout the day, much appreciated and made the move very smooth.</p>";
comments_from[15] = "<p>Amber<br>Coorparoo to Burleigh Waters</p>";

comments_text[16] = "<p>Another great move. Thanks again.</p>";
comments_from[16] = "<p>Katrina<br>Rochedale to Rochedale</p>";

comments_text[17] = "<p>Very thorough and very friendly.</p>";
comments_from[17] = "<p>Hugo<br>Regents Park to Calamvale</p>";

comments_text[18] = "<p>Excellent job, moved us previously and still very happy with everyones work.</p>";
comments_from[18] = "<p>Bruce<br>Darra to Inala</p>";

comments_text[19] = "<p>Careful and courteous. Thankyou.</p>";
comments_from[19] = "<p>Jesmond<br>Coomera Waters to Coomera Waters</p>";

var number = comments_text.length;
var increment = Math.floor(Math.random() * number);

function ShowComments_text() {
	var strTemp = comments_text[increment];
	document.write(strTemp);
}

function ShowComments_from() {
	var strTemp = comments_from[increment];
	document.write(strTemp);
}