Hi,
No worries, I worked around the issue and then ended up using pages anyway.
I thought I'd share a change that I made; I didn't like that the top slider ordered the pages by date, so I modified the query code.
I changed:
query_posts('post_type=page&post_parent='.get_option('efrog_slider_id'));
To:
$args=array(
'post_parent' => get_option('efrog_slider_id'),
'order'=>'ASC',
'orderby'=> 'menu_order',
'post_type' => 'page',
'post_status' => 'publish',
'posts_per_page' => 100
);
query_posts($args);
That allowed me to manually set the order that the pages appeared in the scroller using the page's order field.
Another change that I might make is convert the bottom slider to use pages. I am currently using it to showcase our sponsors by putting each sponsor in a post and marking it with the "Sponsored" category (see http://www.ujsolar.co.za/). However, this has some problems because the sponsors now show up with the blog posts which I don't want.