My front page is divided in two parts
Top Stories
and
News Feed

Now there's a navigation link at the bottom of the 2 sections to go to the next page so i can see the rest of these post.
I decided to use the AJAX plugin to refresh only one section.
<div id="awp_loop"><!--awp_loop-->
<div id="topstoriescontainer">
<div id="topstories">
.......
<div class="nextprevnav">
<?php if(function_exists('wp_page_numbers')) { wp_page_numbers(); } ?>
</div><!-- nextprevnav-->
</div><!--#topstories-->
</div><!-- #topstoriescontainer-->
<!--awp_loop--></div>
<div id="awp_loop"><!--awp_loop-->
<div id="newsstoriescontainer">
<div id="newsstories">
......
<div class="nextprevnav">
<?php if(function_exists('wp_page_numbers')) { wp_page_numbers(); } ?>
</div><!-- nextprevnav-->
</div><!--#newsstories-->
</div><!-- #newsstoriescontainer-->
<!--awp_loop--></div>
but when i change page for one of the sections, it changes it for both.
Is there anything I can do to fix this?