		$(document).ready(function() {
			// Featured Content Slideshow using jQuery Cycle
			$('#featured-slideshow').after('<ul id="featured-controls">').cycle({
				fx: 'fade',
				speed: '1000',
				timeout: '5000',
				pager: '#featured-controls',
				pause: '1',
				pagerEvent: 'mouseover',
				pauseOnPagerHover: '1',
				activePagerClass: 'active',
				allowPagerClickBubble: 'true',
				fastOnEvent: '250',
	
				// Callback Function that Creates Dynamic Pager List
				pagerAnchorBuilder: function(idx, slide) {
					var link = $('a',slide).attr('href');
					var caption = $('h2',slide).html();
					return '<li><span class="indicator"></span><a href="' + link + '">' + caption + '</a></li>';
				}
			});
	
			// Cycle Live Questions List
			$('#new .scroll').cycle({
				fx: 'scrollUp',
				speed: '3000',
				pause: '1',
				nowrap: 0,
				timeout: 3000
			});

			// Iterate Thru Multiple jQuery Cycle Container Elements on Page
			$('.cycle').each(function () {
				var eachCycle = $(this);
				eachCycle.cycle({
					fx: 'scrollHorz',
					speed: 'slow',
					nowrap: 0,
					timeout: 0,
					next: eachCycle.next('.cycle-pagination').find('.cycle-next'),
					prev: eachCycle.next('.cycle-pagination').find('.cycle-previous')
				});
			});
	
			// Questions + Topics Tabbed Content
			$(".tabs-content").hide();
			$(".tab-container .tabs-content:first-child").show();
			$("ul.tabs li:first-child").addClass("active").show();
	
			$("ul.tabs li").click(function () {
				$(this).parent().children("li").removeClass("active");
				$(this).addClass("active");
				$(this).parent().next(".tab-container").children(".tabs-content").hide();
	
				var activeTab = $(this).find("a").attr("href");
				$(this).parent().next(".tab-container").children(activeTab).css("visibility","visible").fadeIn();
				return false;
			});
		});
