function check_col_heights(colOne, colTwo, container){

	var container_height = $(container).getHeight();

	//get the padding values (need to be in pixels)
	var colOne_pad = parseFloat($(colOne).getStyle('padding-top').gsub('px', '')) + parseFloat($(colOne).getStyle('padding-bottom').gsub('px', ''));
	var colTwo_pad = parseFloat($(colTwo).getStyle('padding-top').gsub('px', '')) + parseFloat($(colTwo).getStyle('padding-bottom').gsub('px', ''));	

	$(colOne).setStyle({height:(container_height-colOne_pad)+'px'});
	$(colTwo).setStyle({height:(container_height-colTwo_pad)+'px'});

}