document.observe('dom:loaded', function() {
	$('hide_at_first').hide();
});

function progressiveShowElement(elementToShow,callingElement){
	$(callingElement).setAttribute('onClick',"progressiveHideElement('"+elementToShow+"','"+callingElement+"');");
	new Effect.BlindDown(elementToShow);
	if($(callingElement).innerHTML == "&gt; Afficher tous les fichiers"){
		$(callingElement).innerHTML = "&gt; Minimiser la liste";
	}else{
		$(callingElement).innerHTML = "&gt; Minimise list";
	}
}

function progressiveHideElement(elementToHide,callingElement){
	$(callingElement).setAttribute('onClick',"progressiveShowElement('"+elementToHide+"','"+callingElement+"');");
	new Effect.BlindUp(elementToHide);
	
	if($(callingElement).innerHTML == "&gt; Minimiser la liste"){
		$(callingElement).innerHTML = "&gt; Afficher tous les fichiers";
	}else{
		$(callingElement).innerHTML = "&gt; View all files";
	}
}
