Query Page Content From Theme Options?

Figured it out myself, for anyone else that needs help here are the two options..

            <!--Method 1-->

        <?php $query = new WP_Query(); $query->query('post_type=page&p=' . of_get_option('slide_page1'));while ($query->have_posts()) : $query->the_post(); ?>

        <?php the_title(); ?>

        <?php endwhile; wp_reset_query(); ?>        

        <!--Method 2-->

            <?php $slide1 = of_get_option('slide_page1');?>

        <?php $loop = new WP_Query( array('p' => $slide1, 'post_type' => array('post', 'page'), )); ?>

        <?php while ( $loop->have_posts() ) : $loop->the_post(); ?>

        <h3>    <?php the_title(); ?></h3>

        <?php endwhile; wp_reset_query(); ?>