Ext.onReady(function(){
	

	
    var tabs2 = new Ext.TabPanel({
		id: 'tabs2',						 
        renderTo: 'categoria',
		items:[{title: 'Bienvenido'},{title: 'Ayuntamiento'},{title: 'Localidad'},{title: 'Comarca'},{title: 'Foros'},{title: 'Acerca De'}],
        activeTab: pestanaActual,
        width:900,
	    bodyBorder: false,
		//style: 'background-color: #FFFFFF',
		plain:true,
		border:false,
		defaults:{autoHeight : true},
		listeners: {
			'beforetabchange': function(mTabPanel, newTab, currentTab) {

				if(mTabPanel.activeTab!=null){
					switch(newTab.title){
						case 'Bienvenido': window.location.replace('http://www.aytociruelosdecervera.es/index.php?id=bienvenido');break;	
						case 'Ayuntamiento': window.location.replace('http://www.aytociruelosdecervera.es/index.php?id=ayuntamiento');break;	
						case 'Localidad': window.location.replace('http://www.aytociruelosdecervera.es/index.php?id=localidad');break;	
						case 'Comarca': window.location.replace('http://www.aytociruelosdecervera.es/index.php?id=comarca');break;
						case 'Foros': window.location.replace('http://foros.aytociruelosdecervera.es');break;	
						case 'Acerca De': window.location.replace('http://www.aytociruelosdecervera.es/index.php?id=acercade');break;	
					}
				}

             }
        }
    });
	
   
 
}); 