$(function () {

	// Pause slideshow when pager is clicked
	$('.pager').click(function() { 
		$('.showcase').cycle('pause'); });


	// Cycle the latest news
	$('.news ul').cycle({ fx : 'scrollUp' });


	$(window).load(function () {
		// Showcase slideshow
		$('.showcase').cycle({
			timeout : 7500,
			//easing  : 'easeInCubic',
			speed	: 1000,
			pager	: '.pager', 
			pagerAnchorBuilder: function(idx, slide) { 
				// return selector string for existing anchor 
				return '.pager span:eq(' + idx + ')'; } }); 
	});
});
