// JavaScript Document

/******************************************************************************
				Fix height of Bottom Content on home page
******************************************************************************/	

		
		var height1; 
		var height2;
			
		height1 = document.getElementById("whatnewscontent").clientHeight; // Get height of div "whatsNewContent"and add 0ffset 50
		height2 = document.getElementById("exhibitcontent").clientHeight; // Get height of div "QuestionsContent"and add 0ffset 65
		//alert(height1 +" "+height2);
		
		//Set the height of the continer div "bottomcontentWrapper" to the height of the biggest of height1 height2 or height3
		document.getElementById("contentcenter").style.height = Math.max(height1, height2)+90+"px"; 
		var largest = Math.max(height1, height2);
		
		document.getElementById("whatnewscontent").style.height = largest-5+"px";
		document.getElementById("exhibitcontent").style.height = largest-5+"px";
