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

//
// This is the main layout definition.
//
Ext.onReady(function(){
	
	Ext.QuickTips.init();
	
    var contentPanel = new Ext.TabPanel({
        renderTo: document.body,
        activeTab: 0,
		bodyStyle: 'padding:10px',
		border:true,
		bodyBorder:true,
		frame:true,
        defaults:{autoScroll: true, autoHeight: true, preventBodyReset: true},
        items:[{contentEl:'start-div', title: 'Home'},
			   linkInfoPanel,
				lakeInfoPanel, 
				assnInfoPanel,
				eventsSchedPanel,
				newsletterPanel
        ]
    });

});