// JavaScript Document

window.onload = function() {

var newsHeight = document.getElementById("news_box").clientHeight;
var staffHeight = document.getElementById("staff_box").clientHeight;

  if (newsHeight > staffHeight) {
	  document.getElementById("staff_box").style.height = newsHeight+'px';
  }
  if (newsHeight < staffHeight) {
	  document.getElementById("news_box").style.height = staffHeight+'px';
  }

}
