﻿window.onload = function() {
	Hover("*", "li");
}


// Active une section
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
// Historique de mise à jour
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
// 2007-11-10 : Vincent Lamoureux
//				Création du script


function activerElements() {
	if ( document.getElementById ) {
		var aElements = activerElements.arguments;
		
		for ( var cElements = 0; cElements < aElements.length; cElements++ ) {
			var eSection;
			if ( eSection = document.getElementById(aElements[cElements]) )
				eSection.className = "actif " + eSection.className;
		}
	}
}