$('document').ready(function() {
	$('#image-list').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		next:   '#ic-next', 
	    prev:   '#ic-prev',
	    timeout: 8000
	});

	$('#image-cycler').mouseenter(function() {
		$('#image-list').cycle('pause');
		$('#ic-controls').stop().animate({'bottom': '0'}, 800);
	});
	$('#image-cycler').mouseleave(function() {
		$('#image-list').cycle('resume');
		$('#ic-controls').stop().animate({'bottom': '-54px'}, 800);
	});
	
	$('#ic-close').click(function() {
		$('#ic-controls').animate({'bottom': '-54px'}, 800);
		return false;
	});
});
