var arrayImages = new Array();
var arrayTexto = new Array();
var intIndexArray = 0;
var intArrayLength = 37;

arrayImages[0] = "/hollywood/gallery/burnt_miner.jpg";
arrayImages[1] = "/hollywood/gallery/fresh_kill_a.jpg";
arrayImages[2] = "/hollywood/gallery/fresh_kill_b.jpg";
arrayImages[3] = "/hollywood/gallery/fresh_kill_c.jpg";
arrayImages[4] = "/hollywood/gallery/motel_girl.jpg";
arrayImages[5] = "/hollywood/gallery/motel_guy.jpg";
arrayImages[6] = "/hollywood/gallery/shovel_girl.jpg";
arrayImages[7] = "/hollywood/gallery/butcher_cu_1.jpg";
arrayImages[8] = "/hollywood/gallery/butcher_cu_2.jpg";
arrayImages[9] = "/hollywood/gallery/butcher_cu_3.jpg";
arrayImages[10] = "/hollywood/gallery/butcher_cu_4.jpg";
arrayImages[11] = "/hollywood/gallery/butcher.jpg";
arrayImages[12] = "/hollywood/gallery/lust.jpg";
arrayImages[13] = "/hollywood/gallery/demon_head_1.jpg";
arrayImages[14] = "/hollywood/gallery/demon_head_2.jpg";
arrayImages[15] = "/hollywood/gallery/demon_head_3.jpg";
arrayImages[16] = "/hollywood/gallery/demon_head_4.jpg";
arrayImages[17] = "/hollywood/gallery/demon_v1.jpg";
arrayImages[18] = "/hollywood/gallery/demon_v2.jpg";
arrayImages[19] = "/hollywood/gallery/preacher.jpg";
arrayImages[20] = "/hollywood/gallery/preacher_cu.jpg";
arrayImages[21] = "/hollywood/gallery/eater_zombie_cu2.jpg";
arrayImages[22] = "/hollywood/gallery/killer_klowns_cu1.jpg";
arrayImages[23] = "/hollywood/gallery/killer_klowns_cu3.jpg";
arrayImages[24] = "/hollywood/gallery/flasher.jpg";
arrayImages[25] = "/hollywood/gallery/shaun_zombie_ed.jpg";
arrayImages[26] = "/hollywood/gallery/head_shot_zombie.jpg";
arrayImages[27] = "/hollywood/gallery/head_shot_zombie_cu.jpg";
arrayImages[28] = "/hollywood/gallery/hulk.jpg";
arrayImages[29] = "/hollywood/gallery/hulk_cu.jpg";
arrayImages[30] = "/hollywood/gallery/three_face.jpg";
arrayImages[31] = "/hollywood/gallery/three_face_cu.jpg";
arrayImages[32] = "/hollywood/gallery/ratman.jpg";
arrayImages[33] = "/hollywood/gallery/ratman_cu.jpg";
arrayImages[34] = "/hollywood/gallery/pinhead.jpg";
arrayImages[35] = "/hollywood/gallery/pinhead_cu.jpg";
arrayImages[36] = "/hollywood/gallery/the_geek.jpg";
arrayImages[37] = "/hollywood/gallery/the_geek_cu.jpg";


arrayTexto[0] = "Burnt Miner";
arrayTexto[1] = "Fresh Kill A";
arrayTexto[2] = "Fresh Kill B";
arrayTexto[3] = "Fresh Kill C";
arrayTexto[4] = "Motel Girl";
arrayTexto[5] = "Motel Guy";
arrayTexto[6] = "Shovel Girl";
arrayTexto[7] = "Butcher 1 - Close Up";
arrayTexto[8] = "Butcher 2 - Close Up";
arrayTexto[9] = "Butcher 3 - Close Up";
arrayTexto[10] = "Butcher 4 - Close Up";
arrayTexto[11] = "Butcher";
arrayTexto[12] = "Lust";
arrayTexto[13] = "Demon 1 - Close Up";
arrayTexto[14] = "Demon 2 - Close Up";
arrayTexto[15] = "Demon 3 - Close Up";
arrayTexto[16] = "Demon 4 - Close Up";
arrayTexto[17] = "Demon 1";
arrayTexto[18] = "Demon 2";
arrayTexto[19] = "Preacher";
arrayTexto[20] = "Preacher - Close Up";
arrayTexto[21] = "Eater Zombie - Close Up";
arrayTexto[22] = "Killer Klowns 1 - Close Up";
arrayTexto[23] = "Killer Klowns 3 - Close Up";
arrayTexto[24] = "Flasher";
arrayTexto[25] = "Shaun &amp; Zombie Ed Scareactors";
arrayTexto[26] = "Head Shot Zombie";
arrayTexto[27] = "Head Shot Zombie - Close Up";
arrayTexto[28] = "Hulk Scareactor";
arrayTexto[29] = "Hulk Scareactor - Close Up";
arrayTexto[30] = "Three Face Scareactor";
arrayTexto[31] = "Three Face Scareactor - Close Up";
arrayTexto[32] = "Rat Man Scareactor";
arrayTexto[33] = "Rat Man Scareactor - Close Up";
arrayTexto[34] = "Pinhead Scareactor";
arrayTexto[35] = "Pinhead Scareactor - Close Up";
arrayTexto[36] = "The Geek Scareactor";
arrayTexto[37] = "The Geek Scareactor - Close Up";

//intArrayLength = arrayImages.length;

function nextImage()
{
	if(intIndexArray<intArrayLength-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=37;

	document.getElementById('divPhoto').innerHTML = "<div align=\"center\"><img src="+arrayImages[intIndexArray]+"></div>";
	document.getElementById('divTexto').innerHTML = ""+arrayTexto[intIndexArray]+"";
}