﻿// JScript File

/*
 * Ext JS Library 2.2
 * Copyright(c) 2006-2008, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://extjs.com/license
 */

Ext.onReady(function(){
    // basic tabs 1, built from existing content
    var tabs = new Ext.TabPanel({
        renderTo: 'tabs1',
        width:700,
        activeTab: 0,
        frame:true,
        defaults:{autoHeight: true},
        items:[
			{contentEl:'2010', title: '2010'},
			{contentEl:'2009', title: '2009'},   
            {contentEl:'2008', title: '2008'},
            {contentEl:'2007', title: '2007'}
        ]
    });

    

    
});

