var gallery_image = new Array('gallery_image0', 'gallery_image1', 'gallery_image2', 'gallery_image3', 'gallery_image4', 'gallery_image5');

function showImage(tab, productName)
{
	var productToShow = document.getElementById(productName);
	
	for(i = 0; i< gallery_image.length; i++)
	{
		// Get the current panel
		var curProduct = document.getElementById(gallery_image[i]);
		
		// If it exists, hide it
		if (curProduct != null)
			curProduct.style.display = 'none';		
	}

	// Show the panel
	productToShow.style.display = 'block';
		
	return false;
}
