// zwija i rozwija timeline
jQuery(document).ready(function(){
	jQuery("a#slideTimeline").click(function () {
		var text = jQuery("a#slideTimeline").text();

		if(text == "Rozwiń") {
			jQuery("div#timeline").animate({ 
				height: "335px"
			}, 500 );
			jQuery("a#slideTimeline").text("Zwiń");
			jQuery("#firstClick").addClass("hidden");			
		} else {
			jQuery("div#timeline").animate({ 
				height: "55px"
			}, 500 );
			jQuery("a#slideTimeline").text("Rozwiń");
			jQuery("#firstClick").removeClass("hidden");
		}
	});
	
	jQuery("#firstClick").click(function () {
		jQuery("div#timeline").animate({ 
			height: "335px"
		}, 500 );
		jQuery("a#slideTimeline").text("Zwiń");
		jQuery("#firstClick").addClass("hidden");			
	});
});