$(function() {
		$("#tabs").tabs({
			ajaxOptions: {
				error: function(xhr, status, index, anchor) {
					$(anchor.hash).html("Couldn't load this tab.");
				}
			}
		});
		$("#tabs").data('selected.tabs', null);
	});
