$(document).ready(function(){
var stack = [];
 

// start slideshow 
$('#main_image').cycle({
	timeout:  2000, 
	before:   onBefore,
	fx:	'fade',
	speed:	5500
}); 

// add images to slideshow 
function onBefore(curr, next, opts) { 
	if (opts.addSlide) 
		while(stack.length) 
			opts.addSlide(stack.pop());  
};

}); // document.ready
