jQuery(document).ready(function() {

    $('#slider').nivoSlider();

	$('#carousel').cycle({ 
	    fx:     'scrollHorz', 
		speed: 1000,
		timeout: 0,
		easing: 'easeInOutQuint',
		nowrap: 1,
		next: '#carousel-next',
		prev: '#carousel-prev'
	});



	$('.column .image img').hover(function() {
		$(this).stop().animate({
			opacity: 0.8
		}, 200);
	},function() {
		$(this).stop().animate({
			opacity: 1
		}, 500);
	});

});

