$(function(){
		nb_element=0;
		$("#menuDay ol").children().each(function(){
			nb_element++;
			id_day=$(this).attr('id');
			setTimeout("anim('"+id_day+"')",nb_element*50);

		});
	});

	function anim(koi){
		//$("#"+koi).hide();
		$('#'+koi).animate({
			opacity: 1,
                        //fontSize: '1.6em',
                        marginRight: '20px',
			left: '+=50'
			//height: 'toggle'
		}, 500, function() {
			$(this).show();
			// Animation complete.
		}).animate({
			opacity: 1,
                        //fontSize: '1.6em',
                        marginRight: '4px',
			left: '-=50'
			//height: 'toggle'
		}, 500)

		//alert(koi);
	}
