$(document).ready(function () {
	var page = location.hash;
	if (page == ""){
		page = "#/home/";
	}
	getNewSection(page);
	makeNaviSelected(page);
	$("#navlist li").click(function () {
		var thisli = $(this);
		var thispage = thisli.find("a").attr("href");
		$("#navlist a").removeClass("selected");
		$('#section').slideUp("slow",function () {
			thisli.find("a").addClass("selected");
			getNewSection(thispage);
		});		
	});
	
	$("a.tour").live('click', function() {
		var tourid = $(this).attr("id").replace("tour","");
		$("a.tourselected").removeClass("tourselected").addClass("tour");
		$(this).removeClass("tour").addClass("tourselected");
		$.ajax({
			cache: false,
			type: "GET",
			dataType: "html",
			url: "/php/newflashfile.php",
			data: "id="+tourid,
			success: function(resultdata) {
				var parts = resultdata.split("|*|");
				$(".tourcontainer").html(parts[0]);
			}
		});		
		
		return false;
	});
});