var arrayImages = new Array();
var arrayTexto = new Array();
var intIndexArray = 0;
var intArrayLenght = 16;

arrayImages[0] = "images/visitor_info/fast_furious_gallery/img_gallery_1.jpg";
arrayImages[1] = "images/visitor_info/fast_furious_gallery/img_gallery_2.jpg";
arrayImages[2] = "images/visitor_info/fast_furious_gallery/img_gallery_7.jpg";
arrayImages[3] = "images/visitor_info/fast_furious_gallery/img_gallery_8.jpg";
arrayImages[4] = "images/visitor_info/fast_furious_gallery/img_gallery_9.jpg";
arrayImages[5] = "images/visitor_info/fast_furious_gallery/img_gallery_10.jpg";
arrayImages[6] = "images/visitor_info/fast_furious_gallery/img_gallery_11.jpg";
arrayImages[7] = "images/visitor_info/fast_furious_gallery/img_gallery_13.jpg";
arrayImages[8] = "images/visitor_info/fast_furious_gallery/img_gallery_16.jpg";

arrayTexto[0] = "Annual Pass Member Check In";
arrayTexto[1] = "On the Red Carpet";
arrayTexto[2] = "Gonzalez, Yahima Ponce, and Joanne Solorio";
arrayTexto[3] = "Jill Thomas, Alix Hernandez, and Olivia Cera";
arrayTexto[4] = "Arnel Duldulao, Lisette Bartolome, Derek Bartolome, Paul Passantino";
arrayTexto[5] = "Sergio Chavez, Alma Escalante, Yanira Chavez, Jorge Escalante";
arrayTexto[6] = "Kulasekaran Dasarathan, Devisita Kulasekaran, Swarun Kulasekaran, Shlok Kulasekaran";
arrayTexto[7] = "Margery Marcelino, Mekhi Marcelino, Catherine Brillion";
arrayTexto[8] = "Jonathan Gonzalez, Misael Vera, Juan Arroyo, Hanniel Espinosa";

intArrayLenght = arrayImages.length;

function nextImage()
{
	if(intIndexArray<intArrayLenght-1)
		intIndexArray++;
	else
	intIndexArray=0;
	
	document.getElementById('divPhoto').innerHTML = "<div align=\"center\"><img src="+arrayImages[intIndexArray]+"></div>";
	document.getElementById('divTexto').innerHTML = ""+arrayTexto[intIndexArray]+"";
}

function PreviousImage()
{	
	if(intIndexArray>0)
		intIndexArray = intIndexArray-1;
	else
	intIndexArray=15;

	document.getElementById('divPhoto').innerHTML = "<div align=\"center\"><img src="+arrayImages[intIndexArray]+"></div>";
	document.getElementById('divTexto').innerHTML = ""+arrayTexto[intIndexArray]+"";
}