jQuery.noConflict();
	jQuery(function() {
		jQuery('#container-1').tabs();
		jQuery('#container-2').tabs(2);
		jQuery('#container-3').tabs({ fxSlide: true });
		jQuery('#container-4').tabs({ fxFade: true, fxSpeed: 'fast' });
		jQuery('#container-5').tabs({ fxSlide: true, fxFade: true, fxSpeed: 'normal' });
		jQuery('#container-6').tabs({
			fxFade: true,
			fxSpeed: 'fast',
			onClick: function() {
				alert('onClick');
			},
			onHide: function() {
				alert('onHide');
			},
			onShow: function() {
				alert('onShow');
			}
		});
		jQuery('#container-7').tabs({ fxAutoHeight: true });
		jQuery('#container-8').tabs({ fxShow: { height: 'show', opacity: 'show' }, fxSpeed: 'normal' });
		jQuery('#container-9').tabs({ remote: true });
		jQuery('#container-10').tabs();
		jQuery('#container-11').tabs({ disabled: [3] });

		jQuery('<p><a href="#">Disable third tab<\/a><\/p>').prependTo('#quicken8').find('a').click(function() {
			jQuery(this).parents('div').eq(1).disableTab(3);
			return false;
		});
		jQuery('<p><a href="#">Activate third tab<\/a><\/p>').prependTo('#quicken8').find('a').click(function() {
			jQuery(this).parents('div').eq(1).triggerTab(3);
			return false;
		});
		jQuery('<p><a href="#">Enable third tab<\/a><\/p>').prependTo('#quicken8').find('a').click(function() {
			jQuery(this).parents('div').eq(1).enableTab(3);
			return false;
		});

});

