	function hideAll()
	{
		for(i=1; i<= 12; i++)
		{
			(document.getElementById("gallery" + i)).style.display = "none";
		}
	}

	function showGallery(indx)
	{
		hideAll();
		(document.getElementById("gallery" + indx)).style.display = "block";
	}
