In your mentabox1_rendering function call meatball values by using get_post_meta e.g.;
$features = get_post_meta($page->ID,'room_features',TRUE);
and here<p><textarea style="" cols="90" rows="5" name="room_features" id="room_features" value="<?php //echo $features; ?>"></textarea></p>
remove // ie use
<p><textarea style="" cols="90" rows="5" name="room_features" id="room_features" value="<?php echo $features; ?>"></textarea></p>