// JavaScript Document

function tri_note(){
	
	tab_sup = document.getElementsByTagName('sup');
	tab_notes = document.getElementById('note').getElementsByTagName('li');
	
	for(i=0; i< tab_sup.length; i++){
		m = 10;
		while(tab_notes[i].offsetTop < tab_sup[i].offsetTop && m < 20000){
				
				tab_notes[i].style.marginTop = m+"px";
				m +=10;
			
		}
	}
	
}

window.onload = function(){
	tri_note();
}
