﻿// JavaScript Document
var LECENTRE = {};

LECENTRE.menu = [['accueil1', 'index'], ['hypnose1', 'hypnose1'], ['pnl1', 'pnl1'], ['seance1', 'seance1'], ['therapie1', 'therapie1'],['ateliers1', 'ateliers1'], ['recherche1', 'recherche1'], ['qui suis je1', 'qui suis je1'], ['nous joindre1', 'nous joindre1']];

$(document).ready(function(){  
	for(var i=0; i<LECENTRE.menu.length ; i++){
		var newdiv = document.createElement('div');
		var newa = document.createElement('a');
		var newimg = document.createElement('img');
		
		newa.href=LECENTRE.menu[i][1] + ".html";
		
		newimg.src= "images/menu/"+ LECENTRE.menu[i][0] +".png";
		newimg.id= LECENTRE.menu[i][0];
		
		newimg.onmouseover= function(){
			this.src='images/hover_menu/'+this.id+'_hover.png';
		};
		newimg.onmouseout= function(){
			this.src='images/menu/'+this.id+'.png';
		};
		
		document.getElementById('menu').appendChild(newdiv).appendChild(newa).appendChild(newimg);
	}
});

