Ext.namespace('fenceco','fenceco.public');

fenceco.public.main = function() {

    var init = function( ) {

    	new Ext.ux.Carousel('entryfenceimage', {
            itemSelector: 'img',
            interval: 5,
        	transitionEasing: 'easeIn'  ,
        	autoPlay: true,
            showPlayButton: true,
            pauseOnNavigate: true,
            freezeOnHover: true,
            navigationOnHover: true              
    	});
	}
	
    return {
    
        init : function( ) {
        
            init( );
        }
    }
}();