	var d = document;
	window.onload = function(){
	    var box = new Array("basic", "content", "redline", "box_left", "content_box"); //list of DIV ids
	    for(x=0;x<box.length;x++){ //determine the tallest div
	      h = d.getElementById(box[x]).offsetHeight;
	      for(y=0;y<box.length;y++){
	        test_h = d.getElementById(box[y]).offsetHeight;
	        if(h<test_h) h = test_h;
	      }
	    }
    for(x=0;x<box.length;x++) d.getElementById(box[x]).style.height = h +"px"; //set the height of all divs to the tallest
  	d.getElementById("content_box").style.height = - 195 + h  +"px";
  	d.getElementById("content").style.height = - 195 + h  +"px";
  }

