$(document).ready(function () { 
	/*
	$("#years li a").click(function () {
	var CURRENT = $(this).text();
		
		// Zaznaczanie current
		$(this).parent("li").parent("ul").find("li").removeClass();
		$(this).parent("li").addClass("current");
		$("#months li").removeClass();
		
		// Zmiana href dla miesiecy
		$("#months li a").each(function (intIndex){
		var HREF = $(this).attr("href");
				HREF = HREF.split("/");
				HREF = HREF.reverse();

				$(this).attr("href", "/calendar/archive/" + CURRENT + "/" + HREF[0]);
		});
		
		return false;
	});
	*/
	
	$("#years li a").click(function () {
		
		// Zaznaczanie current
		$(this).parent("li").parent("ul").find("li").removeClass();
		$(this).parent("li").addClass("current");
		$("#months li").removeClass();		
		
		var HREF = $(this).attr("href");
				HREF = HREF.split("/");
				HREF = HREF.reverse();
		
		// 
		$("#timeline").html('<div class="ajax"></div>');
		$.ajax(
		{
			url: "/calendar/getTimeline/" + HREF[0],
			type: "get",
			dataType: "html",
			success: function(response) 
			{
				$("#timeline").html(response);
				$("#timeline").fadeIn(200);				
			}
		}
		);
		
		return false;
	});
	
});


