$('.menu a').click(function() {
		var contentID = $(this).attr("title");

		$('.menu .point').animate({
			top:$(this).position().top
		}, 1500);
		$('#content .text').empty();
			$.getJSON('index.php?p=' + contentID + '&ajax_request=true',
				function(data) {
					$('#content .foot .pdf').attr('href','index.php?p=' + data.id + '&pdf=true');
					$('.header h2').empty().append(data.title);
					
					$('#content .text').append(data.content).jScrollPane({showArrows:true,arrowSize:18,scrollbarWidth:20});
					var Picture = data.picture;	
				}
			);
				
	});
