var wisi = null;
var ddd = null;

window.onload = function () {
	// Preload Image (dw)
	MM_preloadImages(	'img/nord/menu_section.gif',
						'img/est/menu_section.gif',
						'img/ouest/menu_section.gif',
						'img/lausanne/menu_section.gif',
						'img/central/menu_section.gif');

	ddd = document.getElementById('ddd');

	// Init. richedit.
	if (document.getElementById('wisi')) {
		wisi = document.getElementById('wisi');
		wisi.contentWindow.document.designMode = "on";
	}
	
	makeToolbarImage();	
	var divTag = document.getElementsByTagName("div");
	for (var i = 0; i < divTag.length; i++) {
		if (divTag[i].className == "event") {
		
			addEvent(divTag[i], "mouseover", showInfoEvent);
			addEvent(divTag[i], "mouseout", showInfoEvent);
			addEvent(divTag[i], "mousemove", showInfoEvent);		
		}
	}	
}

