// JavaScript Document
/*!
 * Ext JS Library 3.2.1
 * Copyright(c) 2006-2010 Ext JS, Inc.
 * licensing@extjs.com
 * http://www.extjs.com/license
 */
Ext.onReady(function(){
    // second tabs built from JS
    var tabs = new Ext.TabPanel({
        renderTo: 'tabsSection',
        activeTab: 0,
        width:722,
        height:297,
        plain:true,
        defaults:{autoScroll: false},
        items:[{
                title: 'Featured Products',
				autoLoad: {url: 'images/tabs/tab1.cfm'}
            },{
                title: 'What\'s New',
                autoLoad: {url: 'images/tabs/tab2.cfm'}
            },{
                title: 'On Sale',
                autoLoad: {url: 'images/tabs/tab3.cfm'}
            },{
                title: 'Free Projects',
                autoLoad: {url: 'images/tabs/tab4.cfm'}
            }
        ]
    });
});
