$(document).ready( function() {
	$("#tabs").children(".tab-content").hide().eq(0).show();
	$("#tabs-nav").children("li").eq(0).addClass("active");
	
	$("#tabs-nav li").click( function() {
		var tab_index = $("#tabs-nav li").index(this);
		$("#tabs").children(".tab-content").hide();
		$("#tabs").find("div.tab-content").eq(tab_index).show();
		$("#tabs-nav").children("li").removeClass("active").eq(tab_index).addClass("active");
		
		return false;
	});
	
	var tooltip_visible = false;
	
	$("ul#locations").children("li").hover(
		function() {
			if (!tooltip_visible) {
				tooltip_visible = true;
				$(this).children("span").fadeIn("fast").css({"display": "block"});
			}
		},
		
		function() {
			if (tooltip_visible) {
				$(this).children("span").fadeOut("fast",
					function() { tooltip_visible = false; }
				);
			}
		}
	);
});
