this needs to be added differently. The is_page/is_category conditionals don't have anything to work with till after teh query is built.
PHP Code:
add_action( 'genesis_after_post_content', 'child_maybe_show_skitter');
function child_maybe_show_skitter() {
if( is_page() && is_category('photo') )
show_skitter();
}