/*!
 * Ext JS Library 3.0.0
 * Copyright(c) 2006-2009 Ext JS, LLC
 * licensing@extjs.com
 * http://www.extjs.com/license
 */
Ext.onReady(function(){
    // basic tabs 1, built from existing content
    var tabs = new Ext.TabPanel({
        renderTo: 'tabs1',
        width:270,
        activeTab: 0,
        frame:true,
        defaults:{autoHeight: true},
        items:[
            {contentEl:'topActiveTabs', title: 'Top Active'},
            {contentEl:'topGainerTabs', title: 'Top Gainer'},
            {contentEl:'topLosserTabs', title: 'Top Losser'}
        ]
    });
    
    var tabs = new Ext.TabPanel({
        renderTo: 'tabs2',
        width:270,
        activeTab: 0,
        frame:true,
        defaults:{autoHeight: true},
        items:[
            {contentEl:'topActiveTabs1', title: 'Top Active'},
            {contentEl:'topGainerTabs1', title: 'Top Value'},
            {contentEl:'topLosserTabs1', title: 'Top Volume'}
        ]
    });

});