Brilliant thanks Chris, i got this sorted with the new query.
For anyone else looking in future:
Code:
<!--START OF THIS PAGE CONTENT -->
<?php
// The Query
$the_query = new WP_Query('page_id=1580');
// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
the_title();
the_content();
endwhile;
// Reset Post Data
wp_reset_postdata();
?>
<!--END OF THIS PAGE CONTENT -->
<!--START OF THIS CATEGORY POSTS -->
<?php
// The Query
$the_query = new WP_Query( 'cat=51' );
// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
echo '<div class="gaaquote">';
echo '<div class="shadowtop"></div>';
echo '<a href="';
the_permalink();
echo '">';
the_post_thumbnail( array(200,200) );
echo '</a>';
echo '<div class="shadowbottom"></div>';
echo '</div>';
endwhile;
// Reset Post Data
wp_reset_postdata();
?>
<!--END OF THIS CATEGORY POSTS -->
<div class="clearall"></div>
<!--START OF THIS PAGE COMMENTS -->
<?php
// The Query
$the_query = new WP_Query('page_id=1580');
// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
comments_template();
endwhile;
// Reset Post Data
wp_reset_postdata();
?>
<!--SEND OF THIS PAGE COMMENTS -->
Bookmarks