Photos of a Beechcraft AQM-37 Jayhawk Walk Around. From Wikipedia: The Beechcraft AQM-37 Jayhawk (originally designated KD2B and Q-12) is an air-launched supersonic target drone manufactured by Beechcraft capable of simulating inbound ICBM warhead packages for fleet shoot-down exercises.
Download here or here or here (14.7 Megs)
Lots of good photos here
function display_related_posts() {
if (is_single()) {
global $post;
$categories = wp_get_post_categories($post->ID);
if ($categories) {
$args = array(
'category__in' => $categories,
'post__not_in' => array($post->ID),
'posts_per_page' => 4,
'orderby' => 'rand'
);
$related_posts = new WP_Query($args);
if ($related_posts->have_posts()) {
echo '
';
}
wp_reset_postdata();
}
}
}
add_action('wp_footer', 'display_related_posts');