/*!
 * Ext JS Library 3.1.1
 * Copyright(c) 2006-2010 Ext JS, LLC
 * licensing@extjs.com
 * http://www.extjs.com/license
 */
Ext.onReady(function(){
    var p = new Ext.Panel({
		title: 'Manifesto :: Conditions objectives',
        collapsible:true,
		normal: false,
		renderTo: 'panel-pre-manifesto',
		width: 700,
        height: 240,
        collapsed:false,
        border:false,
        autoScroll:true,
        contentEl:'pre-man'
	});
    
    
    new Ext.Panel({
		title: 'Manifesto I :: première partie',
        collapsible:true,
		normal: false,
		renderTo: 'panel-manifesto1',
		width: 700,
        height: 240,
        collapsed:true,
        border:false,
        autoScroll:true,
        contentEl:'man1'
	});
    
    new Ext.Panel({
		title: 'Manifesto II :: deuxième partie',
        collapsible:true,
		normal: false,
		renderTo: 'panel-manifesto2',
		width: 700,
        height: 240,
        collapsed:true,
        border:false,
        autoScroll:true,
		contentEl:'man2',
	});
    
    new Ext.Panel({
		title: 'Manifesto III :: troisième partie',
        collapsible:true,
		normal: true,
		renderTo: 'panel-manifesto3',
		width: 700,
        height: 240,
        collapsed:true,
        border:false, 
        autoScroll:true,
		contentEl:'man3',
	});
    
    new Ext.Panel({
		title: 'Manifesto IV :: quatrième partie',
        collapsible:true,
		normal: true,
		renderTo: 'panel-manifesto4',
		width: 700,
        height: 240,
        collapsed:true,
        border:false,
        autoScroll:true,
		contentEl:'man4',
	});
    
    new Ext.Panel({
		title: 'Manifesto V :: partie occulte',
        collapsible:true,
		normal: true,
		renderTo: 'panel-manifesto5',
		width: 700,
        height: 240,
        border:false,
        autoHeight:true,
        collapsed:true,
        autoScroll:true,
		contentEl:'man5',
	});
    
    new Ext.Panel({
		title: 'Manifesto :: Notes',
        collapsible:true,
		normal: true,
		renderTo: 'panel-manifesto6',
		width: 700,
        height: 240,
        border:false,
        autoHeight:true,
        collapsed:true,
        autoScroll:true,
		contentEl:'man6',
	});
    
        new Ext.Panel({
		title: 'Manifesto VII :: partie sept',
        collapsible:true,
		normal: true,
		renderTo: 'panel-manifesto7',
		width: 700,
        height: 240,
        collapsed:true,
        autoScroll:true,
		contentEl:'man7',
		html: htlm.join('')
	});
    
});

// Some sample html

var htlm = ['<h3>Manifesto</h3>',
'<p>première partie</p>'
];

/*
var man1 = [''
];
*/
