<!--
//Andreaemmes.com by Scott Hicks 3/24/2009

function myreview(x)
{
	//alert(x);
  	var thedoc = new Array();
  	thedoc[0] = document.getElementById("d1");
  	thedoc[1] = document.getElementById("d2");
  	thedoc[2] = document.getElementById("d3");
   	thedoc[3] = document.getElementById("d4");
  	thedoc[4] = document.getElementById("d5");
  	thedoc[5] = document.getElementById("d6");
  	thedoc[6] = document.getElementById("d7");
  	thedoc[7] = document.getElementById("d8");
  	thedoc[8] = document.getElementById("d9");
  	thedoc[9] = document.getElementById("d10");
			  	
  	for (i=0;i <= 9; i++)
  	{
	  	//alert(x);
	  	thedoc[i].style.display = "none";
  	}
  	if (x == null)
  	{
	  	x == 0;
  	}
  	thedoc[x].style.display = "block";
}

		  	
		  	

-->
