pax.load.onloaded( function() {
	pax.widget.tabset.init( pax.$( 'myTabset3' ), {
		width: '100%',
		height: 200,
		dynamicTabsFirst: false,
		tabs: [
			{ title: 'Google iFrame', content: { frame: 'http://www.google.com/' } },
			{ title: 'Lazy loaded ajax', content: { url: '../examples/demo_tabset.ajax.tpl', lazy: true } },
			{ title: 'Text content', content: 'Hello, I\'m the contents of the static tab!!!' }
		]
	} );
} );
