$(document).ready(function(){
	
	$("#debugWindow").text("test");

	//
	// ------------------------------
	// ----- SET INITIAL VALUES -----
	// ------------------------------
	//
	// hide download flash button (in #flashDownload):
	$("#flashDownload").css({
		opacity: "0"
	});

	//
	// ---------------------------------
	// ----- SWAP INFO BOX CONTENT -----
	// ---------------------------------
	//
	
	$("#infoBox").hover(
		function () {
			$("#infoBoxText").css({ 
				visibility:"visible"
			});	
			$("#infoBoxImg").css({ 
				visibility:"hidden"
			});
		},
		function () {
			$("#infoBoxText").css({ 
				visibility:"hidden"
			});	
			$("#infoBoxImg").css({ 
				visibility:"visible"
			});
		}	
	);

	//
	// -------------------------------
	// ----- SLIDING SIDE PANELS -----
	// -------------------------------
	//
	
	$(".slidingPanel").hover( 
		function () {
			$(this).animate({ 
				left:0
      		}, 500 );
		},
		function () {
			$(this).animate({ 
				left:-625
      		}, 200 );
		}
	);
	
	//
	// ----------------------
	// ----- NAVIGATION -----
	// ----------------------
	//
	
	// hide sub links on startup:
	$(".chapter > ul").hide();
	$("#year2009 > ul").slideDown("slow");
	
	
	$(".chapter").hover(
      function () {
		$(this).children().filter("ul").slideDown("slow");
      }, 
      function () {
		$(this).children().filter("ul").slideUp("slow");
      }
    );
	
});