// Ext Accordion Application

Ext.onReady(function(){

var accordion = new Ext.Panel({
    
    layout:'accordion',
	renderTo: 'accordion',
    defaults: {
        // applied to each contained panel
        bodyStyle: 'padding:15px',
		hideMode:'offsets'

    },
    layoutConfig: {
        // layout-specific configs go here
		fill : false,
        titleCollapse: false,
        animate: true,
        activeOnTop: false
    },
    items: [{
        title: 'D&#233;veloppement de Logiciels',
        contentEl:"content-dev"
    },{
        title: 'Cr&#233;ation de Sites Web',
        contentEl:"content-site"
    },{
        title: 'Formation et Maintenance',
        contentEl:"content-form"
    }]
});

});

// end of file