$(function() {
	var filterTitles = new Array();
	$('#jquery .OneCol DIV H4').each( function() {
		filterTitles[filterTitles.length] = $(this).text();
	});
	
	$('#jquery .OneCol').after('<div id="nav">').cycle({fx:'fade', speed:'slow', timeout:10000, pager:'#nav', cleartype:'true'});
	
	$('#nav a').each( function() {
		var pageVal = parseInt($(this).html());
		$(this).text(filterTitles[pageVal-1]);
	});
});

