	function createCallback(type) {
                return function() {
                    alert('callback: ' + type);
                }
            };

            $(document).ready(function() {
                $('#container').tabs({fxFade: true, fxSpeed: 'fast'});
                $('#container-1').tabs();
                $('#container-3').tabs({fxSlide: true});
                $('#container-5').tabs({fxSlide: true, fxFade: true, fxSpeed: 'fast'});
                $('#container-7').tabs({fxAutoHeight: true});
                $('#container-8').tabs({fxShow: {height: 'show', opacity: 'show'}});
                $('#container-9').tabs({fxFade: true, fxAutoHeight: true, fxSpeed: 'fast'});
            });