﻿//<script language="javascript">
//<!--
//<!-- Original:  Robert Bui (astrogate@hotmail.com) -->
//<!-- Adaptation Martin Mc Arthur (martin@rmweb.co.za -->

//<!-- Re-coding by Netlive KZN (support@netlive.co.za -->

//<!-- Begin
var interval = 10; // delay between changing quotes (in seconds)
var random_display = 1; // 0 = no, 1 = yes
interval *= 1000;

var quote_index = 0;
quote_list = new Array();
quote_list[quote_index++] = "We loved staying in Basse Provence. Had an amazing time while being in the most romantic place and being looked after by lovely people. We will definitely come back and recommend to our friends<br><strong>Maria & Jerome,  London</strong>";
quote_list[quote_index++] = "Very peaceful and restful in beautiful surroundings. Excellent service. Will come again soon<br><strong>Zoe & Mike, SA</strong>";
quote_list[quote_index++] = "The most beautiful birthday I ever had! Thank you!!!<br><strong>Ildiks & David, Bulgaria</strong>";
quote_list[quote_index++] = "Thanks for a most relaxed enjoyable stay. Service tops!<br><strong>Christopher and Kim Brown, SA</strong>";
quote_list[quote_index++] = "Lovely staff, scrummy food, delicious wine, cold pool!! What more could you ask for?<br><strong>Polly & Tim, Scotland</strong>";
quote_list[quote_index++] = "Thanks for a great welcoming stay. The hospitality and rooms were perfect<br><strong>The Mayes family, Oxford, UK</strong>";
quote_list[quote_index++] = "Wish we could stay longer. This is a lovely place, maybe the best we’ve stayed in the Cape so far!<br><strong>Angus & Lisa, Malawi</strong>";
quote_list[quote_index++] = "Heaven on earth!<br><strong>Jean & Roger, London</strong>";
quote_list[quote_index++] = "Simply wonderful!<br><strong>Antonella Manelli, Milan, Italy</strong>";
quote_list[quote_index++] = "Pure relaxation!<br><strong>Sam from Cape Town and Amy from Johannesburg</strong>";
quote_list[quote_index++] = "A quick line to say how much we enjoyed our stay at Rickety Bridge. Everyone was so helpful and the accommodation and service were excellent. We are now back in the UK - in the cold and dark - but enjoying our RB wines which we brought back with us. Thank you also for the dinner reservations which you made on our behalf.  We can certainly recommend the food and service at Freedom Hill.<br/>All our very best wishes to all at RB<br><strong>Robert</strong>";
quote_list[quote_index++] = "Just a quick email to say that we had a wonderful time staying at Basse Provence last week. Your staff were friendly and helpful, the cottage was beautiful, and the breakfasts were lovely! I will definitely recommend you to friends visiting the area in future.<br><strong>Thanks again, Rhian</strong>";
quote_list[quote_index++] = "Beautiful place. the staff are very helpful and considerate. I would recommend it to everyone<br><strong>Lesley Lappin, United Kingdom</strong><br><a class='s' target='_blank' href='http://www.safarinow.com/lib/hbef/reviews/AllReviews.aspx?spid=12024'>More reviews<br></a>";
var number_of_quotes = quote_list.length;

function generate(x, y) {
var range = y - x + 1;
return Math.floor(Math.random() * range) + x;
}

function getNextQuote() {
	if (random_display) {
		quote_index = generate(0, number_of_quotes-1);
	}
	else {
		quote_index = (quote_index+1) % number_of_quotes;
	}
	var new_quote = quote_list[quote_index];
	return(new_quote);
}

function changeQuote(div_id) {

	_findObj(div_id).innerHTML = getNextQuote();
	var recur_call = "changeQuote('"+div_id+"')";
	setTimeout(recur_call, interval);
}
//  End -->

function _findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}
//</script>