﻿$(function() {
	$( "#navi" ).tabs({
		collapsible: false,
		selected: 10,
		spinner: 'Retrieving data...',
		ajaxOptions: {
			async: false,
			error: function( xhr, status, index, anchor ) {
				$( anchor.hash ).html(
					"Couldn't load this tab. We'll try to fix this as soon as possible. " + xhr + " " + status + " " + index + " " + anchor );
			}
		}
	});
});

$(function() {
	$("#tablist a").click(function() {
		var anchor = $(this).attr('id');

		$("#content").hide("drop", "", "slow", function () {
			$("#content").load(anchor, function () {
				$("#content").show("slide", "", "slow")
			})
		});
		window.location.hash = anchor;
		return false;
	});
});

$(function() {
	$("#footer a").click(function() {
		var anchor = $(this).attr('href');
		$("#content").hide("drop", "", "slow", function () {
			$("#content").load(anchor, function () {
				$("#content").show("slide", "", "slow")
			})
		});
		window.location.hash = anchor;
		return false;
	});
});

