
/*
 * Démonstration de Sortable (une liste).
 *
 * Nécessite script.aculo.us et Prototype.
 */

function initSortables() {
	Sortable.create('dragSpace', { constraint: false });
} // initSortables

Event.observe(window, 'load', initSortables);
