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