<?php

function pagination_item_active(&$item)
{
	$title = '';
	if (!is_numeric($item->text))
	{
		$title = ' title="' . $item->text . '"';
	}
	return '<a' . $title . ' href="' . $item->link . '">' . $item->text . '</a>';
}
function pagination_item_inactive(&$item)
{
	return $item->text ;
}

?>