/*
 * Ext JS Library 2.2.1
 * Copyright(c) 2006-2009, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://extjs.com/license
 */

Ext.onReady(function(){
    // basic tabs 1, built from existing content
    var h = window.screen.height;
    h=h-258;

    var tabs = new Ext.TabPanel({
        renderTo: 'tabs1',
        width:496,
        height:h,
        activeTab: 0,
        frame:true,
        //defaults:{autoHeight: false},
        items:$tabs
    });

    function handleActivate(tab){
        alert(tab.title + ' was activated.');
    }
});
