function sp_category_checklist($name = '', $selected = array())
{
    genesis_category_checklist($name, $selected);
}
    function form($instance)
    {
        $instance = wp_parse_args((array) $instance, array('title' => '', 'include' => array(), 'order' => ''));
        // Empty fallback (default)
        if (empty($instance['include'])) {
            $cats = get_categories('hide_empty=0');
            foreach ((array) $cats as $cat) {
                $instance['include'][] = $cat->ID;
            }
        }
        ?>
		
		<p><?php 
        _e('NOTE: Leave title blank if using this widget in the header', 'genesis');
        ?>
</p>
		<p>
			<label for="<?php 
        echo $this->get_field_id('title');
        ?>
">
			<?php 
        _e('Title', 'genesis');
        ?>
:
			</label>
			<input type="text" id="<?php 
        echo $this->get_field_id('title');
        ?>
" name="<?php 
        echo $this->get_field_name('title');
        ?>
" value="<?php 
        echo esc_attr($instance['title']);
        ?>
" style="width:95%;" />
		</p>
		
		<p><?php 
        _e('Choose the order by which you would like to display your categories', 'genesis');
        ?>
:</p>
		
		<p><select name="<?php 
        echo $this->get_field_name('order');
        ?>
">
			<option style="padding-right:10px;" value="ID" <?php 
        selected('id', $instance['order']);
        ?>
>ID</option>
			<option style="padding-right:10px;" value="name" <?php 
        selected('name', $instance['order']);
        ?>
>Name</option>
			<option style="padding-right:10px;" value="slug" <?php 
        selected('slug', $instance['order']);
        ?>
>Slug</option>
			<option style="padding-right:10px;" value="count" <?php 
        selected('count', $instance['order']);
        ?>
>Count</option>
			<option style="padding-right:10px;" value="term_group" <?php 
        selected('term_group', $instance['order']);
        ?>
>Term Group</option>
		</select></p>

		<p><?php 
        _e('Use the checklist below to choose which categories (and subcategories) you want to include in your Navigation Menu', 'genesis');
        ?>
</p>
		
		<div id="categorydiv">
		<ul class="categorychecklist">
		<li>
		<?php 
        genesis_category_checklist($this->get_field_name('include'), $instance['include']);
        ?>
		</ul>
		</div>
		
	<?php 
    }