$(document).ready(function() {
	
    $('#home-carousel').cycle({
		fx: 'fade',
		timeout: 0,
		before: function(currSlideElement, nextSlideElement, options, forwardFlag) {
			var height = parseInt($(this).css('height'));
			
			if ( height ) {
				$('#home-carousel').animate({ height: height });
			}
		}
	});
	
	$('a.home-carousel-prev').click(function(event) {
		$('#home-carousel').cycle('prev');
		event.preventDefault();
	});
	
	$('a.home-carousel-next').click(function(event) {
		$('#home-carousel').cycle('next');
		event.preventDefault();
	});
	
});
