> is_page() && $wp_query->get_queried_object_id == get_option('page_on_front')
Oops, typo. I meant:
is_page() && $wp_query->get_queried_object_id() == get_option('page_on_front')
But there's this:
is_front_page()
If you want to know whether you're on the posts page, use
$wp_query->is_posts_page
There ought to be a function...
Andy