Ext.onReady(function() {
	var carousel = new Ext.ux.Carousel('mobi-carousel', {
		itemSelector: 'img',
		interval: 3,
		autoPlay: true,
		showPlayButton: true,
		pauseOnNavigate: true,
		freezeOnHover: true,
		transitionType: 'fade',
		//navigationOnHover: true       
		//navigationOnHover: false,
		hideNavigation: false
	});
	
	carousel.on('change', function(slide, index) {
		//alert(index);
	});
});