function loaded()
{
	window.scrollTo(0, 1);
	$('body').prepend('<div id="loading">Chargement : 0%</div>');	

	var urls = ['/img/nuage1.png','/img/nuage2.png','/img/aura.png', '/img/moi.png', '/img/bulle1.png', '/img/bulle2.png', '/img/bulle3.png', '/img/bulle4.png', '/img/bulle5.png', '/img/bulle6.png', '/img/Button-jmoati.png'];

	$.preload( urls, {
		onComplete : function(_data)
		{
			var pourcent = Math.round(_data.done / _data.total * 100);

			$('#loading')[0].innerHTML = 'Chargement : ' + pourcent + '%';
			$('#loading').css({opacity: (100-pourcent)/100});
		},
		onFinish:function( data )
		{
			$('#loading').remove();
	var options = {};
	var speed = 400;
	var speed2 = 100;
	var effect = 'bounce';

	$('#nuage_deco').show('slide', options, speed, function()
	{
		$('#nuage_support').show('slide', options, speed, function()
		{
			$('#aura').show('clip', options, speed, function()
			{
				$('#jmoati').show('clip', options, speed, function()
				{
					$('#bulle6').show(effect, options, speed2, function()
					{
						$('#bulle4').show(effect, options, speed2, function()
						{
							$('#bulle2').show(effect, options, speed2, function()
							{
								$('#bulle3').show(effect, options, speed2, function()
								{
									$('#bulle5').show(effect, options, speed2, function()
									{
										$('#bulle1').show(effect, options, speed2, function()
										{
											$('#info').show('slide', options, 'normal', function()
											{
												$('.friend').show('slide', options, speed2, function()
												{
													$('#download_cv').show('bounce', options, speed, function()
													{
													});
												});
											});
										});
									});
								});
							});
						});
					});
				});
			});
		});
	});

                }
        });

}

window.onload = loaded;

