/*adding new galleries to the site

1. create the images array
2. create the text array if relevant
3. create an action in getImageList()
4. do the same for getImage Text() if needed

make sure calls to the fuctions include the relevant page as a parameter
*/
function validatecontactform()
{
		if (document.getElementById("contactform").email.value == "")
		  {
			alert("Please enter an e-mail address for us to respond to.");
			document.getElementById("contactform").email.focus();
			return (false);
		  }

		if (document.getElementById("contactform").emailC.value == "")
		  {
			alert("Please enter confirmation e-mail address.");
			document.getElementById("contactform").emailC.focus();
			return (false);
		  }
		  
		if (document.getElementById("contactform").emailC.value != document.getElementById("contactform").email.value)
		  {
			alert("Please ensure confirmation e-mail matches original e-mail.");
			document.getElementById("contactform").emailC.focus();
			return (false);
		  }

				
	/*		//check recaptcha
		if(document.getElementById("contactform").captcha_code.value == "")
		{ alert("Please fill in the word validation field.");
		document.getElementById("contactform").captcha_code.focus();
		return false;
		}
	*/	
		
		document.getElementById("contactform").submit(); 

}

var tm = new Array();

tm[0] = "\"Brendan,<BR>Just a quick note to show our appreciation for all the work you put in to make our sale go so smoothly.\"<br>Stewart & Lynne";

tm[1] = "\"Alan and Linda, Thank you for all your work concerning my purchaser of the villa at Bonny Hills.  Your friendly help and advise given in such a professional and reassuring manner made things so much easier for me.  Many thanks once again.\"<br>OC.";
				   
tm[2] = "\"Priest McCarron staff, Thank you for all your support this last six months.  It has been an awful difficult time for us but you all have been fantastic to us and it has been appreciated! You are all very special people.\"<br>Penny and Doug.";
		
tm[3] = "\"Emilie, Just a little note to thank you so much for the very smooth \"settlement\" process on the Ballina house.  Even the real estate agent was \"shocked\" on asking who our solicitor in Wauchope was!\"<br>  Elise";

tm[4] = "\"A very big thank you to all at Priest McCarron who have worked to get our land bought and sold over the last year.  Your guidance and friendly attitude have been wonderful, we are sincerely grateful to each of you! <br>   Keith";

tm[5] = "\"Priest McCarron, Just a small note to say \"thank you\" for the wonderful service you gave us.  Nothing was too much trouble, and it was truly appreciated by us both. \"<br>    Peter and Ros.";

tm[6] = "\"Linda and Mr Priest, We would like to express our thanks for your professional conveyancing service in the selling and buying of our new property. We realise these were not straightforward transactions and we are most grateful.  \"<br>  Annette.";

tm[7] = "\"Matthew,  I am writing to thank you for your first class representation of me on a mid range PCA charge.  I believe the outcome was due entirely to your strategy, and your presentation in court, both of which were excellent. \"<br>    Ken";

tm[8] = "\"Matthew and Leeanne, than you for all your efforts in regards to baby Jayde.  We appreciate you did all you could and that it’s the system that has failed this child. \"<br>    CW";

tm[9] = "\"Emilie, Thank you for your most helpful advice and guidance concerning guardianship of my sister.  I was very appreciative. \"<br>   Mary.";

tm[10] = "\"Thank you Priest McCarron.  With the house and agent and bank and loan, there were so many hassles.  They are a pain.  Relief at last.  The only party good in all schemes was you.  Really appreciate that.  I will keep that in mind with any future dealings as well as inform friends about you. \"<br>    DP";

tm[11] = "\"Emilie, Thank you so much for your wonderful patience and compassion during my appointment.  You were so special and so very much appreciated.  \"<br>  Julie.";

tm[12] = "\"Alan and Linda, Thank you for all your help.  Your professionalism made it very easy and stress free for us. \"<br>   Robert & Kelli";

tm[13] = "\"Brendan,<BR>On behalf of us all, we would like to thank you for all your time and hard work to finalise our purchase. We have the keys now so will have a lot of work to do. So once again thank you.\"<br>  Sue";

var current = 0;


function next(){
	current ++;
	
	var text = tm;
		
		if(current >= tm.length) current = 0;
				
				
		document.getElementById('testimonialText').innerHTML = "<div class=\"nextbutton right floatright\"><a href=\"javascript:void(0)\" onClick=\"next()\" class=\"underlined\">NEXT</a> </div>" + tm[current];
}

function prev(){
	current --;
	
	var text = tm;
		
		if(current < 0) current = tm.length - 1;
				if(text) document.getElementById('testimonialText').innerHTML = tm[current];
				
				

	}



