jquery-ui.css
	jQuery version 13 seems to have removed some CSS rules that were needed for the tooltips.
	W.e've added these back in, just above the "Component containers" section:
		.ui-tooltip {
			padding: 8px;
			position: absolute;
			z-index: 9999;
			max-width: 300px;
		}
		body .ui-tooltip {
			border-width: 2px;
		}	


jquery-ui.visitor.js
	This is a custom build of jQuery UI, with:
		All of the Core components
		The plugin, safeActiveElement and safeBlur modules/functions
		The Tooltips Widget
		All of the jQuery UI effects
	
	Some lines have been changed to add the option to disable ARIA voice-over support
	  Replace:
		this.liveRegion = $( "<div>" )
			.attr( {
				role: "log",
				"aria-live": "assertive",
				"aria-relevant": "additions"
			} )
			.appendTo( this.document[ 0 ].body );
		this._addClass( this.liveRegion, null, "ui-helper-hidden-accessible" );
	  With:
		if (!this.options.disableAriaLiveRegions) {
			this.liveRegion = $( "<div>" )
				.attr( {
					role: "log",
					"aria-live": "assertive",
					"aria-relevant": "additions"
				} )
				.appendTo( this.document[ 0 ].body );
			this._addClass( this.liveRegion, null, "ui-helper-hidden-accessible" );
		}
	
	  Replace:
		this.liveRegion.children().hide();
		a11yContent = $( "<div>" ).html( tooltip.find( ".ui-tooltip-content" ).html() );
		a11yContent.removeAttr( "name" ).find( "[name]" ).removeAttr( "name" );
		a11yContent.removeAttr( "id" ).find( "[id]" ).removeAttr( "id" );
		a11yContent.appendTo( this.liveRegion );
	  With:
		if (!this.options.disableAriaLiveRegions) {
			this.liveRegion.children().hide();
			a11yContent = $( "<div>" ).html( tooltip.find( ".ui-tooltip-content" ).html() );
			a11yContent.removeAttr( "name" ).find( "[name]" ).removeAttr( "name" );
			a11yContent.removeAttr( "id" ).find( "[id]" ).removeAttr( "id" );
			a11yContent.appendTo( this.liveRegion );
		}
	  Replace:
		this.liveRegion.remove();
	  With:
		if (this.liveRegion)
		this.liveRegion.remove();
	
	The following line has been added as a work-around for a problem for Bootstrap users where
	Bootstrap's tooltip function clashed with jQuery's tooltip function:
		$.widget.bridge('jQueryTooltip', $.ui.tooltip);

jquery-ui.autocomplete.js
	This is the Autocomplete Widget from jQuery UI
	The Menu Widget is also included as this is a dependancy

jquery-ui.datepicker.js
	This is the Datepicker Widget from jQuery UI

jquery-ui.iconselectmenu.js
	This is the icon menu from https://jqueryui.com/selectmenu/#custom_render

jquery-ui.interactions.js
	This contains all of the jQuery UI interactions, except sortable which is in its own file.
	Note this has a dependancy on the Mouse Widget, which is not included.

jquery-ui.progressbar.js
	This is the Progressbar from jQuery UI

jquery-ui.selectmenu.js
	This is the Selectmenu from jQuery UI

jquery-ui.slider.js
	This is the Slider Widget from jQuery UI
	Note this has a dependancy on the Mouse Widget, which is not included.

jquery-ui.sortable.js
	This is the Sortable Widget from jQuery UI
	The Mouse Widget is also included as this is a dependancy

jquery-ui.spinner.js
	This is the Spinner Widget from jQuery UI
	The Controlgroup, Checkboxradio and Button Widgets are also included as they are dependancies.

Note:
	The only Widget we don't use is the Accordion Widget, which is not bundled at all.


css/jqueryui/jquery-ui.css
	This is the "Base" theme from http://jqueryui.com/themeroller/ and http://jqueryui.com/download/

	
