	var curr_index = 0;
	var image_array = new Array("photo_hs_2.jpg","photo_df_2.jpg","photo_ll_2.jpg");
	var text_array = new Array();
	text_array[0] = "Had a great time also thanks for your tour in Honolulu. I checked on Google Earth and found the graveyard and the hidden valley where some scenes of 'Lost' were taken. Thanks again for the tour.<br /><br />Henry<br />Nanaimo, B.C., Canada";
	text_array[1] = "Your tour was fantastic and I can't think of anything to add to it.  Part of what makes it great is your outstanding enthusiasm and willingness to share stories and information. It was a great day.<br /><br />Dan<br />Sacramento, CA";
	text_array[2] = "We loved your tour. My husband, mom and I were there the first week of October. I attached a photo of YOU in action. I was captivated by everything you said and how you interacted with us.<br /><br />Lynda";

	function next_image()
	{
	 	if(window.curr_index+1 < window.image_array.length)
	 	{
	 		window.curr_index++;
	 	}
		document.getElementById('pc1').src = "images/" + window.image_array[window.curr_index];
		document.getElementById('pc2').innerHTML = window.text_array[window.curr_index];
	}
	
	function last_image()
	{
	 	if(window.curr_index > 0)
	 	{
	 		window.curr_index--;
	 	}
		document.getElementById('pc1').src = "images/" + window.image_array[window.curr_index];
		document.getElementById('pc2').innerHTML = window.text_array[window.curr_index];
	}