// JavaScript Document

function homeHeights(){
		  var middle = document.getElementById('middleBottom');
		 var right= document.getElementById('rightBottom');
		 var left = document.getElementById('leftBottom');
		 
    	 var h = Math.max(middle.offsetHeight, right.offsetHeight);
		 
		 h = Math.max(h, left.offsetHeight);
		 
    	 if (middle.offsetHeight!=h) middle.style.height=h+'px';
   		 if (right.offsetHeight!=h) right.style.height=h+'px';
		 if (left.offsetHeight!=h) left.style.height=h+'px';
}