/*
SCRIPT EDITE SUR L'EDITEUR JAVACSRIPT
http://www.editeurjavascript.com
*/

document.write('<style type="text/css">\nA.ejsmenu { color:#FFFFFF;text-decoration:none }\n</style>')
document.write('<DIV id=menu_dep STYLE="position:absolute; top:83; left:668"><TABLE BORDER=0 CELLPADDING=1 CELLSPACING=2 WIDTH=150 style="border : 1px dashed white;"')
document.write('<TR><TD BGCOLOR=#000000 onMouseDown="testClick()" onMouseUp="testClick2()" style="cursor:move"><FONT SIZE=2 face="Verdana" COLOR=#FFCC00><B>Menu</B></FONT></TD></TR>')
document.write('</TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Verdana">&nbsp;<A HREF=accueil.php CLASS=ejsmenu>Accueil</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Verdana">&nbsp;<A HREF=/forum/index.php CLASS=ejsmenu>Forum</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Verdana">&nbsp;<A HREF=http://www.ssb-fan.com/forum/ucp.php?i=pm&folder=inbox CLASS=ejsmenu>Messagerie</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Verdana">&nbsp;<A HREF=http://www.ssb-fan.com/forum/viewforum.php?f=9 CLASS=ejsmenu>Tournois</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#9FB1D8 NOWRAP><FONT SIZE=2 face="Verdana">&nbsp;<A HREF=http://www.ssb-fan.com/upload/choix_fichier.php CLASS=ejsmenu>Upload</A></FONT>&nbsp;</TD></TR></TABLE></DIV>')

clickOui = false;
bloc_x = 668;
bloc_y = 60;

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+'px'
document.getElementById("menu_dep").style.top = bloc_y+'px'
	}
if(navigator.appName.substring(0,3) == "Net")
	document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = get_mouse;