;(function ($) {
	$.fn.displetNavigatorSkin = function () {
		return this.each(function () {
			// we cannot get the navigator api in the
			// same manner as scrollable
			var page_buttons = $(this).find('.navi').not('browse').children('a');

			var page = 1;
			page_buttons.each(function () {
				var $this = $(this);

				$this.attr({
					'href': '#hnav' + page,
					'id': '#hnav' + page
				});

				$this.text(page);
				page++;
			});
		});
	}
})(jQuery);
