$(document).ready(function()
	{
	
	$('#features ul').hide();

	}
);

$(window).load(function()
{	

	// Features box
	
	$('#features ul').show().cycle({
			pager: '#fNav',
			pause: true,
			pauseOnPagerHover: true,
			timeout: 5000,
			pagerAnchorBuilder: function(idx, slide) {
				return '<a href="#"><span>' + (idx + 1) + '</span></a>';
			},
			cleartype: 1
		});		

	
	// Home Thumbnail carousel
	$('#storyThumbs').jCarouselLite({
    	btnNext: "img#stNext",
    	btnPrev: "img#stPrev"
	});


	// Event Picks carousel
	$('#listingThumbs').jCarouselLite({
    	btnNext: "img#ltNext",
    	btnPrev: "img#ltPrev"
	});	

});