
		// Declare the variable "x" for later use.
		var x;
		
		// Create an array of all the ID names of the affected containers.
		var allContainers=new Array();
			allContainers[ 0]="indian";
			allContainers[ 1]="readmore";
			
			

		// Here is the function that does the work.
		function showThis(targetID)
		{
			for (x in allContainers)
			{
				document.getElementById(allContainers[ x]).style.height="0";
			}
			document.getElementById(targetID).style.height="auto";
		}
	
    