$(document).ready(function() {
	var posCorrection = "125";
	
	//Ersten Jahresblock zeigen
	$("div.jahrinfoboxContainer:first").show("fast");
	$("div.jahrinfoboxContainer:first").addClass("aktiv");
	
	$('div.ce41-geschichte-jahrinfo').click(function() {
   		var aktItem = $(this);
   		//Alle Jahresblöcke verstecken
   		$("div.aktiv").hide("fast", function() {
   			$pos = $(aktItem).find("h1").position();
   			$toShow = $(aktItem).find("div.jahrinfoboxContainer");
   		
   			$("div.aktiv").removeClass("aktiv");
        	// Animation complete
      		$(".ce43-geschichte-marker").animate({ top: $pos.top-posCorrection }, "1000");
   		
   			
   			$($toShow).show("fast");
   			$($toShow).addClass("aktiv");
      	});
   		
   		
   	});
});
