// Bibliothèque de scripts - 


//****************************************************************
// Affichage des sous-menus 
//****************************************************************

/* sfHover = function() {
	if (document.getElementById('menu'))
		{
			var sfEls = document.getElementById('menu').getElementsByTagName("LI");
			for (var i=0; i<sfEls.length; i++) {
				sfEls[i].onmouseover=function() {
				this.className+=" sfhover";
			}
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			}
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover); */


//****************************************************************
// Fonction de gestion de la hauteur de page 
//****************************************************************

/* function getWindowHeight() {
	var windowHeight = 0;
	if (typeof(window.innerHeight) == 'number') {
		windowHeight = window.innerHeight;
	}
	else {
		if (document.documentElement && document.documentElement.clientHeight) {
			windowHeight = document.documentElement.clientHeight;
		}
		else {
			if (document.body && document.body.clientHeight) {
				windowHeight = document.body.clientHeight;
			}
		}
	}
	return windowHeight;
}
function setGlobal() {
	if (document.getElementById('global')) {
		document.getElementById('global').style.height = getWindowHeight() - 30;
	}
}

window.onload = function() {
	setGlobal();
}
window.onresize = function() {
	setGlobal();
} */

