<!--
//Andreaemmes.com by Scott Hicks 4/10/2009


function myimg(y)
{
//	alert(y);
	
	var thetab = new Array();
  	thetab[0] = document.getElementById("t0");
  	thetab[1] = document.getElementById("t1");
  	thetab[2] = document.getElementById("t2");
  	thetab[3] = document.getElementById("t3");
   			  	
  	for (i = 0; i <= 3; i++)
  	{
	  	thetab[i].style.display = "none";
  	}
  	if (y == null)
  	{
	  	y == 0;
  	}
  	
  	thetab[y].style.display = "block";  	
}


//This function changes pictures.
function past(x)
{
	//alert(x + " past");
	
  	var thedoc = new Array();
  	//GG Girls
  	thedoc[0] = "images/past/gg.jpg";
  	thedoc[1] = "images/past/gg1.jpg";
  	thedoc[2] = "images/past/gg2.jpg";
   	thedoc[3] = "images/past/gg3.jpg";
  	thedoc[4] = "images/past/gg4.jpg";
  	thedoc[5] = "images/past/gg5.jpg";
  	thedoc[6] = "images/past/gg6.jpg";
  	thedoc[7] = "images/past/gg7.jpg";
  	thedoc[8] = "images/past/gg8.jpg";
  	thedoc[9] = "images/past/gg9.jpg";
  	thedoc[10] = "images/past/gg10.jpg";
  	thedoc[11] = "images/past/gg11.jpg";
  	thedoc[12] = "images/past/gg12.jpg";
  	thedoc[13] = "images/past/gg13.jpg";
  	thedoc[14] = "images/past/gg14.jpg";
  	//Knotts
  	thedoc[15] = "images/past/knotts.jpg";
  	thedoc[16] = "images/past/knotts1.jpg";
  	thedoc[17] = "images/past/knotts2.jpg";
  	thedoc[18] = "images/past/knotts3.jpg";
  	thedoc[19] = "images/past/knotts4.jpg";
  	thedoc[20] = "images/past/knotts5.jpg";
  	thedoc[21] = "images/past/knotts6.jpg";
  	//Universal
  	thedoc[22] = "images/past/monster.jpg";
  	//thedoc[23] = "images/past/monster1.jpg";
  	thedoc[24] = "images/past/monster2.jpg";
  	thedoc[25] = "images/past/monster3.jpg";  //6
  	thedoc[26] = "images/past/monster4.jpg";
  	thedoc[27] = "images/past/monster5.jpg";
  	thedoc[28] = "images/past/monster6.jpg";
  	//Pirates
  	thedoc[29] = "images/past/pirates.jpg";
  	thedoc[30] = "images/past/pirates1.jpg";
  	thedoc[31] = "images/past/pirates2.jpg";
  	thedoc[32] = "images/past/pirates3.jpg";
  	thedoc[33] = "images/past/pirates4.jpg";
  	thedoc[34] = "images/past/pirates5.jpg";
  	thedoc[35] = "images/past/pirates6.jpg";
  	thedoc[36] = "images/past/pirates7.jpg";
  	thedoc[37] = "";
  	thedoc[38] = "";
  	thedoc[39] = "";

  	document.form.again.src = thedoc[x];
}

-->
