$(function() {
	var navTitles = new Array();
	
	navTitles[0] = "RAILINGS";
	navTitles[1] = "FENCES";
	navTitles[2] = "GATES";
	navTitles[3] = "COLUMNS";
	navTitles[4] = "SPIRAL STAIRS";
	
	$('#topContent #jqContainer').after('<div id="nav">').cycle({fx:'fade', speed:'slow', timeout:10000, pager:'#nav'});
	
	$('#nav a').each( function() {
		var pageVal = parseInt($(this).html());
		$(this).text(navTitles[pageVal-1]);
	});
});
