if (typeof SE === 'undefined') {
	var SE = {Views: {}};
}

SE.Views.Stage = (function ($) {
	var that = {},
		el;
	
	that.init = function (_el) {
		el = _el;
		
		el.find('> *').show();
		
		el.cycle({
			timeout: 6000
		});
	};
	
	
	function main () {
		$('.image-stage .items').length && that.init($('.image-stage .items'));
	}
	
	$(main);
	
	return that;
})(jQuery);
