// JavaScript Document
// Random Reviews

// This function returns an image tag that can be written to the html document
function randomReview(reviews) {
  // index to the selected image
  var idx = Math.floor(Math.random() * reviews.length);
  var tag = reviews[idx];
  return tag;
}

arrReviews = new Array();
arrReviews[	0	]=" \"	It is hard to describe the wonderful atmosphere of Creagh House ... those devalued words 'fantastic' and 'fabulous' are appropriate.	\" -	<strong>	 Good Hotel Guide   	</strong>	";
arrReviews[	1	]=" \"	Your house is what I dreamed of before coming to Ireland - dreams come true!	\" -	<strong>	 Travel & Leisure - Christopher Petkanas (Special Correspondent)   	</strong>	";
arrReviews[	2	]=" \"	While it may be a cliche to describe a house as 'amazing', that is, occasionally, the only word that seems to apply.	\" -	<strong>	 Georgina Campbell   	</strong>	";
arrReviews[	3	]=" \"	Nothing prepares you for the sheer scale and beauty of the rooms as you approach the austere weathered limestone front.	\" -	<strong>	 Alistair Sawday   	</strong>	";
arrReviews[	4	]=" \"	These aristocratic rooms have been restored to their former glory, with a wedding-cake icing of plasterwork ringing their lofty ceilings above sink-in sofas and chairs and a vast dining-room table.	\" -	<strong>	 Karen Brown   	</strong>	";
arrReviews[	5	]=" \"	It is a house  which has been revitalised as an exquisite assertion of the Georgian townhouse.  The house speaks of style, but quietly.	\" -	<strong>	 Mary Leland  (The Irish Examiner) 	</strong>	";
arrReviews[	6	]=" \"	We were most impressed by the amount of sensitive restoration done	\" -	<strong>	 Cork Historical and Archaeological Society   	</strong>	";
arrReviews[	7	]=" \"	For little-known retreats of real character ... Image spying activities  suggest historic Creagh House in  Doneraile ...	\" -	<strong>	 Image Magazine, Dublin   	</strong>	";
arrReviews[	8	]=" \"	It was delightful to spend an evening in your very beautiful house - the  wine and the ceilings made the evening memorable - and your good humour even  more so.	\" -	<strong>	 Andrew King, Halifax, Nova Scotia   	</strong>	";
arrReviews[	9	]=" \"	A great place to stay and wonderful hospitality. It couldn't have been  better.	\" -	<strong>	 Dan Herren, St. Louis, USA   	</strong>	";
arrReviews[	10	]=" \"	Class 'A' operation - thanks so much for the fun.	\" -	<strong>	 Mike Sweeney, Memphis, USA   	</strong>	";
arrReviews[	11	]=" \"	A wonderful night and a wonderful house	\" -	<strong>	 Susan Ashton, London   	</strong>	";
arrReviews[	12	]=" \"	Our stay in Creagh House was a highlight indeed ...	\" -	<strong>	 Paula & Jacques Coenen, Netherlands   	</strong>	";

//document.writeln(randomReview(arrReviews));
