<?php
/*
Plugin Name: Category Box Extender
Description: Increases the height of the category box to 400px on the posting screen
Version: 1.0
Author: Mark Jaquith
Author URI: http://markjaquith.com/
*/

add_action('admin_head', create_function('', 'echo "<style type=\"text/css\">#categorychecklist{height:400px}</style>";'));

?>