var calque;
var coorx;
var coory;
function ie() {
	var f=window.event;
	coory = f.y;
	coorx = f.x;
}
function ns(e) {
	x=e.x; y=e.y;
	coory = e.pageY;
	coorx = e.pageX;
}
function Init() {
if (document.captureEvents)
{
document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = ns
}
else
document.onmousemove= ie;
}
function voir (nom,src,menu_gaucheV) {
document.images[nom].src=src;
calque = document.getElementById("menu1").style;
calque.visibility = 'visible';
intop = coory-10+ document.body.scrollTop;
if (document.captureEvents)
{intop = coory-10;}
calque.top=intop.toString()+'px';
inleft = coorx-120;
if (menu_gaucheV=='oui') {inleft=coorx+120;}
calque.left=inleft.toString()+'px';
}
function cache () {
calque = document.getElementById("menu1").style;
calque.visibility = 'hidden';
}
Init();

