function showProduct( nextProduct, currentProduct ) {
	document.getElementById( "product_" + currentProduct ).style.display = "none";
	document.getElementById( "product_" + nextProduct ).style.display = "block";
}
