';
 $html .= '
';
 $html .= $content;
 $html .= '
';
 return $html;
}
add_shortcode('one_half', 'one_half_column_function');
function add_one_half_button() {
   if ( ! current_user_can('edit_posts') && ! current_user_can('edit_pages') )
     return;
   if ( get_user_option('rich_editing') == 'true') {
	 add_filter('mce_external_plugins', 'add_one_half_tinymce_plugin');
     add_filter('mce_buttons', 'register_one_half_button');
   }
}
/* init*/
add_action('init', 'add_one_half_button');
function register_one_half_button($buttons) {
   array_push($buttons, "|", "one_half");
   return $buttons;
}
function add_one_half_tinymce_plugin($plugin_array) {
   $plugin_array['one_half'] = get_template_directory_uri().'/shortcode/one_half/one_half_plugin.js';
   return $plugin_array;
}
?>