document.write('<style type="text/css">\nA.ejsmenu { color:#333333;text-decoration:none }\n</style>')
document.write('<DIV id=menu_dep STYLE="position:absolute; top:10; left:10"><TABLE BORDER=0 CELLPADDING=1 CELLSPACING=2 WIDTH=150>')
document.write('<TR><TD BGCOLOR=#0365be onMouseDown="testClick()" onMouseUp="testClick2()" style="cursor:move"><center><FONT SIZE=3 face="Tahoma" COLOR=#FFFFFF><B>MENU</B></FONT></center></TD></TR>')
document.write('</TR><TR><TD BGCOLOR=#d4ddee NOWRAP><FONT SIZE=2 face="Verdana"><B>&nbsp;<A HREF=http://just-lorie.net/ CLASS=ejsmenu>Actualit&eacute;</A></B></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#d4ddee NOWRAP><FONT SIZE=2 face="Verdana"><B>&nbsp;<A HREF=http://www.just-lorie.net/home.php?page=lorie CLASS=ejsmenu>Lorie</A></B></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#d4ddee NOWRAP><FONT SIZE=2 face="Verdana"><B>&nbsp;<A HREF=http://www.just-lorie.net/home.php?page=medias CLASS=ejsmenu>M&eacute;dias</A></B></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#d4ddee NOWRAP><FONT SIZE=2 face="Verdana"><B>&nbsp;<A HREF=http://www.just-lorie.net/home.php?page=goodies CLASS=ejsmenu>Goodies</A></B></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#d4ddee NOWRAP><FONT SIZE=2 face="Verdana"><B>&nbsp;<A HREF=http://www.just-lorie.net/home.php?page=fans CLASS=ejsmenu>Fans</A></B></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#d4ddee NOWRAP><FONT SIZE=2 face="Verdana"><B>&nbsp;<A HREF=http://www.just-lorie.net/home.php?page=site CLASS=ejsmenu>Site</A></B></FONT>&nbsp;</TD></TR></TABLE></DIV>')

clickOui = false;
bloc_x = 10;
bloc_y = 10;

function testClick() {
		base_x = x-bloc_x;
		base_y = y-bloc_y;
		clickOui=true;
	}
function testClick2() {
		clickOui=false;
	}


function get_mouse(e)
	{
	x = (navigator.appName.substring(0,3) == "Net") ? e.pageX : event.x+document.body.scrollLeft;
	y = (navigator.appName.substring(0,3) == "Net") ? e.pageY : event.y+document.body.scrollTop;
	if(clickOui && document.getElementById)
		{
		bloc_x = x-base_x;
		bloc_y = y-base_y;
		}
	document.getElementById("menu_dep").style.left = bloc_x
  	document.getElementById("menu_dep").style.top = bloc_y
	}
if(navigator.appName.substring(0,3) == "Net")
	document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = get_mouse;