var t = new Array();
t[0] = "staff_leaf1";	
t[1] = "staff_leaf2"; 
t[2] = "staff_leaf3";
t[3] = "staff_leaf4";
t[4] = "staff_leaf5";
t[5] = "staff_leaf6";
var idCourant = 0;

var s = new Array();
s[0] = "appear-div1";
s[1] = "appear-div2";
s[2] = "appear-div3";
s[3] = "appear-div4";
s[4] = "appear-div5";
s[5] = "appear-div6";
function lancerGrow ( )
{
	var idElCourant = "";
	if (idCourant <= (t.length-1))
	{
		idElCourant = t[idCourant];
		Grow(idElCourant,{afterFinish:yop(idElCourant)});
		idCourant++;
	}
	
	window.setTimeout("lancerGrow()",200);
}

function Grow (idElement)
{	
	Effect.Grow(idElement,{direction: 'center', duration : 0.2});
}

function yop (idElCourant)
{
	$(idElCourant).style.opacity='1.0'
}

function Appear (idElement)
{
	for( var i = 0; i < s.length; ++i ){
		if( idElement != s[i] ){
		 Effect.Fade(s[i]);
		}
	}
	Effect.Appear(idElement);
}

