/*
 * JS fuer Homepage
 */
Ext.onReady(function()
{
	var tabs = new Ext.TabPanel({
		renderTo: 'tabbar_themost',
		width: '100%',
		activeTab: 0,
		frame: true,
		deferredRender: false,
		defaults: {
			autoHeight: true
		},
		items: [{
			title: 'POPULAR',
			contentEl: 'tabbar_themost_popular'
		}, {
			title: 'RECENT',
			contentEl: 'tabbar_themost_recent'
		}, {
			title: 'EDITORS PICK',
			contentEl: 'tabbar_themost_editor'
		}]
	});
});
