/*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
*/


var tm = new Array();


tm[0] = "<em>\"Hi Lisa, Just wanted to let you know how much we love the surfboard you manufactured for our son Caleb's room. You did an amazing job and it definitely adds that final touch that his room required.</em><br>Kind Regards,\"</em><br>&nbsp;<br>Sascha";

tm[1] =	"<em>\"I have saved your wonderful website on my favorites menu and will use it for gifts throughout the year and will share the site with friends.\"</em><br>&nbsp;<br>Madeline";

tm[2] =	"<em>\"Thanks we received it last week and it is fantastic!! Have also looked at the wall colours you suggested and they look great too!  Thanks for your help.\"</em><br>&nbsp;<br>Sally";

tm[3] = "<em>Hi Lisa, <br>Just thought I'd let you know that my order arrived today and they look wonderful.<br>I'm looking forward to my girls seeing them later today.<br>Thank you so much.<br>Regards,\"</em><br>&nbsp;<br>Lisa<br>";
		   
tm[4] = "<em>\"Thanks Lisa,<br>We love your website, these ideas are fantastic.  I especially love the portraits. \"</em> <br>&nbsp;<br>Kylie";
		
tm[5] = "<em>\"It's awesome and I am very happy with the order. It will go perfect in my little boys room.<br>Thank you.\"</em><br>&nbsp;<br>Vanessa";

tm[6] = "<em>\"Haha thanks! Just got the order, everything is super cute. Can't wait to hang it.<br>Thanks again,</em>\"<br>&nbsp;<br>Jada";

tm[7] =	"<em>\"Just wanted to drop you a note to say we received the pin boards & surfboard and letters and the girls love them!\"</em><br>&nbsp;<br>Wendy";

tm[8] = "<em>\"Thankyou so much for my fantastic surf boards, I love them!!!!\"</em><br>&nbsp;<br>Jodie";

tm[9] = "<em>\"I received my order today at work and I love it, I really like the swirls. Thank you so so much for getting it to me by Christmas, my daughter will be thrilled on Christmas day. I will try  and send through a photo of it on the wall after Christmas.\"</em><br>&nbsp;<br>Rosemary";

tm[10] = "<em>\"Thank you very much for the surfboard pin board my daughter loves it. We are re-locating back to the UK in a couple of weeks and I'm sure many of Lauren's friends will be very jealous.\"</em><br>&nbsp;<br>Sandra";

//tm[3] = "<em>\"Thanks so much for getting this to me well before Quinn's birthday. It has arrived today. Can't wait to give it to him.\"</em><br>&nbsp;<br>Nicole";
	

var current = 0;


function next(page){
	current ++;
	
	var text = tm;
		
		if(current >= tm.length) current = 0;
				
				
		document.getElementById('galleryText').innerHTML = tm[current];
}

function prev(page){
	current --;
	
	var text = tm;
		
		if(current < 0) current = tm.length - 1;
				if(text) document.getElementById('galleryText').innerHTML = tm[current];
				
				

	}



