Hook specific functions if on a specific admin page

Try passing the $hook parameter, and hooking into admin_enqueue_scripts:

function load_required_scripts( $hook )
{
    if ( 'theme_options.php' == $hook ) {
    /* required hooks here */
    }
}
add_action( 'admin_enqueue_scripts', 'load_required_scripts' );