/**
 *
 */

var ricci = {
	
	init: function() {
		
		ricci.slideshow();
		
	}
	
	,slideshow: function() {
		
		$('.main-image-area img').load(function() {
			$('.main-image-area').cycle({
				fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			});
		});
		
	}
	
};

$(document).ready(ricci.init);