I'd like this code to only run inside the admin area as it is resorting the items on the public side admin bar too.
/* Reorder Admin Menu to put "Pages" at the top */
function menu_order_filter($menu) {
$content_menu = array('edit.php?post_type=page');
array_splice($menu, 2, 0, $content_menu);
return array_unique($menu);
}
add_filter('custom_menu_order', create_function('', 'return true;'));
add_filter('menu_order', 'menu_order_filter');