$(document).ready(function() {
	$('#items')
	.cycle({
		fx: 'scrollUp',
		timeout: 0,
		speed: 500,
		easing: 'easeOutExpo',
		pager: '#side ul',
		pagerAnchorBuilder: function(idx, slide) {
			return '<li><a href="#">' + jQuery(slide).attr('title') + '</a></li>';
		}
	});
	
	$('#pullDown img').click(function() {
		$('#items').cycle('next');
	});
	
	$('#pullBack').click(function() {
		$('#items').cycle(0);
	});
	
	$('#contact').click(function() {
		$('#items').cycle(5);
	});
});

$(document).ready(function() {
	$('#ticker')
	.cycle({
		fx: 'scrollLeft',
		timeout: 5000,
		speed: 1200,
		pause:  1,
		easing: 'easeOutExpo'
	});
});

$(document).ready(function() {
	$('#tickerContainer').css('display', 'block');
});

