Display gallery on top before content

function gallery_first( $content) {
    $expr="/\[gallery(.*?)\]/i";
    return preg_replace_callback( $expr, create_function('$matches', 'return do_shortcode($matches[0]);'), $content);
}
add_filter( 'the_content', 'gallery_first', 6); // prio 6 executes this function previous to all other filter functions