Ext.onReady(function(){
    
	var tabs2 = new Ext.TabPanel({
        renderTo: 'tabsdiv',
        activeTab: 0,
        width:840,
        height:650,
        minTabWidth:100,
		resizeTabs: true,
		plain:true,
		defaults:{autoScroll: true},
		layoutOnTabChange: true,
        items:[
		    {title: 'Home', autoLoad: {url:'home.html', scripts: true}},
		    {title: 'Services', autoLoad: {url:'services.html', scripts: true}},
		    {title: 'Projects', autoLoad: {url:'projects.html', scripts: true}},
		    {title: 'About Us', autoLoad: {url:'about.html', scripts: true}},
		    {title: 'Forms', autoLoad: {url:'forms.html', scripts: true}},
		    {title: 'Council Fees', autoLoad: {url:'fees.html', scripts: true}},
		    {title: 'Contact Us', autoLoad: {url:'contacts.html', scripts: true}},
		    {title: 'Links', autoLoad: {url:'links.html', scripts: true}}
			]
    });
	
    
});
