/** Animation du titre de la sidebar */

function animateAsideTitle() {
	var offset = $('#content>aside').offset();
	$('#content>aside>ul, #content>aside>p').animate({
		marginTop: 90
	});
	$('#content>aside header').animate({
		opacity: 1,
		right: offset.left+750
	}, 500);
	$('#content>aside header h3').animate({
		right: 40
	}, 600);
};

