$(function () {
	$('#home-gallery').cycle({fx: 'scrollRight', timeout: 8000,
		before: function (curr, next, opts) {
			$('#home-gallery-thumbs img').animate({width: '100px'});
		},
		after: function (curr, next, opts) {
			$('#home-gallery-thumbs img:eq('+opts.currSlide
				+')').animate({width: '140px'});
		}
	});
	$('#home-gallery-thumbs img').click(function () {
		$('#home-gallery').cycle($(this).index());
	});
});
