/*
 * 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>Empresas:</li><ul style='margin-left:50px'><li>Colegios Siglo XXI.</li><li>Universidad Católica de Valencia.</li><li>Ribera Salud.</li><li>Teatro Olympia.</li></ul><li>Instituci&oacute;n: <ul style='margin-left:50px'><li>Asociación Valenciana de Asistencia Sanitaria y Social Voluntaria.</li></ul><li>Ayuntamiento: <ul style='margin-left:50px'><li> Excelent&iacute;simo Ayuntamiento de Alboraya.</li></ul></ul>");
		tab1.on('activate',function(){
            this.bodyEl.setHeight('300px');
        });   
		var tab2 = jtabs.addTab('jtabs-2', "Siglo XXI","<iframe src='empresas/photoalbum_empresas_colegiosSigloXXI.html' width='100%' height='100%' frameborder=0></iframe>");
		tab2.on('activate',function(){
            this.bodyEl.setHeight('650px');
        });
		var tab3 = jtabs.addTab('jtabs-3', "Universidad Católica","<iframe src='empresas/photoalbum_empresas_universidadCato.html' width='100%' height='100%' frameborder=0></iframe>");
		tab3.on('activate',function(){
            this.bodyEl.setHeight('650px');
        });
		var tab4 = jtabs.addTab('jtabs-4', "Ribera Salud","<iframe src='empresas/photoalbum_empresas_riberaSalud.html' width='100%' height='100%' frameborder=0></iframe>");
		tab4.on('activate',function(){
            this.bodyEl.setHeight('750px');
        }); 
		var tab5 = jtabs.addTab('jtabs-5', "Olympia","<iframe src='empresas/photoalbum_empresas_teatroOlympia.html' width='100%' height='100%' frameborder=0></iframe>");
		tab5.on('activate',function(){
            this.bodyEl.setHeight('750px');
        }); 



		var tab6 = jtabs.addTab('jtabs-6', "Institución","<iframe src='institucion/photoalbum_institucion.html' width='100%' height='100%' frameborder=0></iframe>");
		tab6.on('activate',function(){
            this.bodyEl.setHeight('650px');
        });		
		var tab7 = jtabs.addTab('jtabs-7', "Ayuntamiento","<iframe src='poblacion/photoalbum_poblacion.html' width='100%' height='100%' frameborder=0></iframe>");
		tab7.on('activate',function(){
            this.bodyEl.setHeight('650px');
        });

		
		jtabs.activate('jtabs-1');
    }
}
Ext.EventManager.onDocumentReady(TabsExample.init, TabsExample, true);