I know where you're coming from :)
There are 2 edits you need to make to /framework/theme_plugins/kriesi_options_pages/kriesi_options_pages.php
Find this line:
add_menu_page($top_level, $top_level, 7, $this->pageinfo['filename'], array(&$this, 'initialize'));
and this line:
add_submenu_page(TOP_LEVEL_BASEAME, $this->pageinfo['full_name'], $this->pageinfo['full_name'], 7, $this->pageinfo['filename'], array(&$this, 'initialize'));
Change the 7's to 10's like this:
add_menu_page($top_level, $top_level, 10, $this->pageinfo['filename'], array(&$this, 'initialize'));
and:
add_submenu_page(TOP_LEVEL_BASEAME, $this->pageinfo['full_name'], $this->pageinfo['full_name'], 10, $this->pageinfo['filename'], array(&$this, 'initialize'));
The number refers to the access level needed to access the page, 7 is editor (or higher) and 10 is administrator.