function show() {
	var myFx = new Fx.Tween("bar");

	myFx.start('height', '100px');

	setTimeout("montrer()", 700);
}

function montrer() {
	$("rapport").fade("in");
}