function fixdivs(){
	var content = new obj("content");
	var content_left = new obj("content_left");
	var content_right = new obj("content_right");
	var content_divider = new obj("content_divider");
	var footer = new obj("footer");
	
	max_height = Math.max(content_left.h,content_right.h);
	footer_y = max_height + 313;
	
	footer.moveIt(footer.x,footer_y);
	content.css.height = max_height + 60;
	content_divider.css.height = max_height - 30;
	
	content.showIt();
	content_left.showIt();
	content_right.showIt();
	content_divider.showIt();
	footer.showIt();
}
