Instead of having this in your header.php :
<?php $my_query = new WP_Query('category_name=featured&showposts=10');?>
you must build a query with the ID instead of category_name and it should look like this:
<?php
$args = array(
'showposts' => 10,
'post__in' => array(1,3,66,321)
);
$my_query = new WP_Query($args); ?>
where 1,3,66,321 are posts ID.