/*!
 * 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: 'ThreeRow_B',
        width:600,
        activeTab: 0,
        frame:true,
        defaults:{autoHeight: true},
        items:[
            {contentEl:'investment', title: 'Investment'},
            {contentEl:'research', title: 'Research'},
            {contentEl:'consultation', title: 'Consultation'}
        ]
    });


});
