lesFonctions= new Array();

window.onload= function() {
	for ( f= 0; f< lesFonctions.length; f++) {
		t= lesFonctions[f];
		t();
	}
}

function ajouterUneFonctionAuDemarrage( fonction ) {
	lesFonctions[lesFonctions.length]= fonction;
}
