var Menu = {
	PATH: '../img/menu/',
	images: ['bt_loches', 'bt_chinon', 'bt_deviniere', 'bt_sache', 'bt_st_cosme', 'bt_gd_pressigny', 'bt_cande', 'bt_gouin', 'bt_richelieu'],
	
	init: function () {
		var li = document.getElementById('ul-menu-site').getElementsByTagName('LI');
	
		var o = new Image();
		for (var i = 0; i < this.images.length; i ++) {
			o.src = this.PATH + this.images[i] + '_on.gif';
			this.linkOver(li[i], this.PATH + this.images[i] + '_on.gif');
			this.linkOut(li[i], this.PATH + this.images[i] + '_off.gif');
		}
	},
	
	linkOver: function (li, image) {
		li.firstChild.onmouseover = function () {
			this.firstChild.src = image;
		}
	},
	
	linkOut: function (li, image) {
		li.firstChild.onmouseout = function () {
			this.firstChild.src = image;
		}
	}
}

window.onload = function () {
	Menu.init();
	init_AccessParams();
}
