Ext.onReady(function(){
	if (Ext.get('tab_container_1')) {
		/*new Ext.ux.SliderPanel({
			applyTo: 'tab_container_1_body_1',
			height: 185
		});
		
		new Ext.ux.SliderPanel({
			applyTo: 'tab_container_1_body_2',
			height: 185
		});*/
		
		var tabs1 = new Ext.TabPanel({
			applyTo: 'tab_container_1',
			width: 260,
			height: 160,
			autoShow: true,
			activeTab: 0,
			deferredRender: false,
			autoTabs: true,
			plain: true,
			defaults:{
				autoScroll: true
			},
			bodyStyle: 'padding: 5px;'
		});
	}
	
	if (Ext.get('tab_container_2')) {
		var tabs2 = new Ext.TabPanel({
			applyTo: 'tab_container_2',
			width: 260,
			height: 160,
			autoShow: true,
			activeTab: 0,
			deferredRender: false,
			autoTabs: true,
			plain: true,
			defaults:{
				autoScroll: true
			},
			bodyStyle: 'padding: 5px;'
		});
	}
});