/*
 * Ext JS Library 2.2
 * Copyright(c) 2006-2008, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://extjs.com/license
 */

Ext.onReady(function(){
		var tabs = new	Ext.TabPanel({
				renderTo: 'jtabs',
				activeTab: 0,
				width:577,
				height:316,
				plain:true,
				defaults:{autoScroll: true, autoHeight: false},
				items:[{
								title: tabName1,
								html:	tabContent1
						},{
								title: tabName2,
								html:	tabContent2
						},{
								title: tabName3,
								html:	tabContent3
						},{
								title: tabName4,
								html:	tabContent4
						},{
								title: tabName5,
								html:	tabContent5
						},{
								title: tabName6,
								html:	tabContent6
						}
				]
		});

});