Need help to change the zzrss feed to work as pagination

Need help to change the zzrss feed to work as pagination

I am using zzrss to display the feeds on a page I want to add pagination to the feed the thing is zzrss allows feed limit and offset value so I want to use a button as next and previous for the pagination so it jumps 5 posts

Visit the site for the whole documentation and examples I want to have the pagination feature. Thanks in advance and let me know if anybody is not getting the question. here is my sample code it just displays recent 5 posts

<script type="text/javascript">
    $(document).ready(function () {
    var offset = 0;
    var offby = 0;
    $("#next10").click(function() {
    var offby = Number(offby) + 5;
    });
    var limit = 5;
        $('#test').rssfeed('rss feed links goes here', {
            limit: 5,
            content: true,
            snippet: false,
            offset: offby,
            dateformat: '<span id="pubdate">Published on:dd MMMM yyyy</span>'
        });
    });
    </script>