
            $(function() {

				$('#container-1').tabs({ fxFade: true, fxSpeed: 'normal'});
                $('#container-2').tabs({ initial:2, fxFade: true, fxSpeed: 'normal'});
                $('#container-3').tabs({ initial:3, fxFade: true, fxSpeed: 'normal'});
                $('#container-4').tabs({ initial:4, fxFade: true, fxSpeed: 'normal'});
                $('#container-5').tabs({ initial:5, fxFade: true, fxSpeed: 'normal'});
                $('#container-6').tabs({ initial:6, fxFade: true, fxSpeed: 'normal'});
                $('#container-7').tabs({ initial:7, fxFade: true, fxSpeed: 'normal'});


/*
                $('#container-5').tabs({ fxSlide: true, fxFade: true, fxSpeed: 'slow' });
                $('#container-6').tabs({
                    fxFade: true,
                    fxSpeed: 'fast',
                    onClick: function() {
                        alert('onClick');
                    },
                    onHide: function() {
                        alert('onHide');
                    },
                    onShow: function() {
                        alert('onShow');
                    }
                });
                $('#container-7').tabs({ fxAutoHeight: true });
                $('#container-8').tabs({ fxShow: { height: 'show', opacity: 'show' }, fxSpeed: 'slow' });
                $('#container-9').tabs({ remote: true });
                $('#container-10').tabs();
                $('#container-11').tabs({ disabled: [3] });
*/




                $('<p><a href="#">Disable third tab</a></p>').prependTo('#fragment-28').find('a').click(function() {
                    $(this).parents('div').eq(1).disableTab(3);
                    return false;
                });
                $('<p><a href="#">Activate third tab</a></p>').prependTo('#fragment-28').find('a').click(function() {
                    $(this).parents('div').eq(1).triggerTab(3);
                    return false;
                });
                $('<p><a href="#">Enable third tab</a></p>').prependTo('#fragment-28').find('a').click(function() {
                    $(this).parents('div').eq(1).enableTab(3);
                    return false;
                });

            });


