(function($) {
	$(document).ready(function(){
		$('#hc-items').cycle({
			next: '#hc-next',
			prev: '#hc-back',
			timeout: 10000,
			after: function(curr, next, opts) {
				var index = opts.currSlide;
				$('#hc-back')[index == 0 ? 'hide' : 'show']();
				$('#hc-next')[index == opts.slideCount - 1 ? 'hide' : 'show']();
			}	
		});
	});
})(jQuery);