OK, this is a very raw script just to give you an idea on how this could work, you still need to define some parameters, the class accepts the following parameters:
function __construct($array, $page = 1, $link_prefix = false, $link_suffix = false, $limit_page = 20, $limit_number = 10)
$array the actual array that will be used, in this case it uses the array that generates ssi_boardNews()
$link_prefix something that will be appended to the url where the pagination is set, you need to actually use the action where you are
$link_suflix the same as the previous, just this time it will be appended at the end of the current url
$limit_page the number of results per page
$limit_number the number of pages to show in the pagination numbers.
the class returns several resources but the important ones are:
OutputArray(); displays the results
OutputPanel(); displays the pagination numbers.
hope this helps.
this will only work on php5