// Set up gradient
$(function() {
	$('.onecell').gradient({
		from:      'f9db95',
		to:        'ffffff',
		direction: 'horizontal'
	});
});

// Equal height on all columns
$(function() {
	$('.column').height(
		$.makeArray(
			$('.column').map(function() {
				return $(this).innerHeight()
			})
		).max()
	);
});

// Set up slide show with controls
$(function () {
	new Controls(
		$('#controls'),
		new Scroller(
			$('#scroller'), { 'direction': 'horizontal' }
		)
	);
});


