public void Init()
		{
			diggComponent = new DiggStylePagination();

			singlePage = new Page(new string[] {"a", "b", "c"}, 1, 4, 1);
			secondPageOfThree = new Page(new string[] {"a", "b", "c", "d"}, 2, 4, 10);
		}
		public void Init()
		{
			diggComponent = new DiggStylePagination();

			singlePage = new Page(new[] {"a", "b", "c"}, 1, 4, 1);
			secondPageOfThree = new Page(new[] {"a", "b", "c", "d"}, 2, 4, 10);
			fifthPageOfTwelve = new Page(new[] {"e"}, 5, 1, 12);
			BuildEngineContext("area", "controller", "action");
		}