/*
 * Ext JS Library 1.1 RC 1
 * Copyright(c) 2006-2007, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://www.extjs.com/license
 */

var TabsExample = {
    init : function(){
        var jtabs = new Ext.TabPanel('jtabs');
        var tab1=jtabs.addTab('jtabs-1', "Los Premiados", "<ul style='margin-left:5px;margin-top:50px;line-height:2em'><li>Poblaci&oacute;n: el Excelent&iacute;simo Ayuntamiento de Villamarchante.</li><li>Instituci&oacute;n: Consellería de Inmigración y Ciudadania.</li><li>Empresas:</li><ul style='margin-left:50px'><li>Revista Economía 3.</li><li>Bodegas Vicente Gandía.</li><li>SEROLO, Empresa Taurina de la Plaza de Valencia.</li></ul></ul>");
		tab1.on('activate',function(){
            this.bodyEl.setHeight('300px');
        });   

/*        var tab2 = jtabs.addTab('jtabs-2', "Población");
        var updater2 = tab2.getUpdateManager();
        updater2.setDefaultUrl('url_Tab2.html');
        tab2.on('activate', updater2.refresh, updater2, true);*/
		var tab2 = jtabs.addTab('jtabs-2', "Población","<iframe src='poblacion/photoalbum_poblacion.html' width='100%' height='100%' frameborder=0></iframe>");
		tab2.on('activate',function(){
            this.bodyEl.setHeight('650px');
        });

		
		var tab3 = jtabs.addTab('jtabs-3', "Institución","<iframe src='institucion/photoalbum_institucion.html' width='100%' height='100%' frameborder=0></iframe>");
		tab3.on('activate',function(){
            this.bodyEl.setHeight('650px');
        });
		
		var tab4 = jtabs.addTab('jtabs-4', "Empresas-1","<iframe src='empresas/photoalbum_institucion_economia3.html' width='100%' height='100%' frameborder=0></iframe>");
		tab4.on('activate',function(){
            this.bodyEl.setHeight('650px');
        });
    
		var tab5 = jtabs.addTab('jtabs-5', "Empresas-2","<iframe src='empresas/photoalbum_institucion_gandia.html' width='100%' height='100%' frameborder=0></iframe>");
		tab5.on('activate',function(){
            this.bodyEl.setHeight('650px');
        });
		var tab6 = jtabs.addTab('jtabs-6', "Empresas-3","<iframe src='empresas/photoalbum_institucion_serolo.html' width='100%' height='100%' frameborder=0></iframe>");
		tab6.on('activate',function(){
            this.bodyEl.setHeight('750px');
        });        
		
		jtabs.activate('jtabs-1');
    }
}
Ext.EventManager.onDocumentReady(TabsExample.init, TabsExample, true);