/*
SCRIPT EDITE SUR L'EDITEUR JAVACSRIPT
http://www.editeurjavascript.com
*/


document.write('<style type="text/css">\nA.ejsmenu { color:#FF9900;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=#000000 onMouseDown="testClick()" onMouseUp="testClick2()" style="cursor:move"><FONT SIZE=4 face="Arial Black" COLOR=#FFCC00><B>Menu</B></FONT></TD></TR>')
document.write('</TR><TR><TD BGCOLOR=#98FC98 NOWRAP><FONT SIZE=3 face="Arial Black"><B>&nbsp;<A HREF=index.htm CLASS=ejsmenu>Accueil</A></B></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#33CC00 NOWRAP><FONT SIZE=3 face="Arial Black">&nbsp;<A HREF=jeux_qui_rapportent.htm CLASS=ejsmenu>Jeux qui paient</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#98FC98 NOWRAP><FONT SIZE=3 face="Arial Black">&nbsp;<A HREF=jeux_a_telecharger.htm CLASS=ejsmenu>Jeux à Télécharger</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#33CC00 NOWRAP><FONT SIZE=3 face="Arial Black">&nbsp;<A HREF=loteries_gratuites.htm CLASS=ejsmenu>Loteries Gratuites</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#98FC98 NOWRAP><FONT SIZE=3 face="Arial Black">&nbsp;<A HREF=sondages.htm CLASS=ejsmenu>Sondages Rémunérés</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#33CC00 NOWRAP><FONT SIZE=3 face="Arial Black" COLOR=#006400><B>Communiquer</B></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#33CC00 NOWRAP><FONT SIZE=3 face="Arial Black">&nbsp;<A HREF=http://www.swisstools.net/forum.asp?fid=69406 CLASS=ejsmenu>Forum</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#98FC98 NOWRAP><FONT SIZE=3 face="Arial Black">&nbsp;<A HREF=mailto:meme-nico@ifrance.fr CLASS=ejsmenu>Contact</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#33CC00 NOWRAP><FONT SIZE=3 face="Arial Black" COLOR=#006400><B>Autres Ressources</B></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#98FC98 NOWRAP><FONT SIZE=3 face="Arial Black">&nbsp;<A HREF=les_petits_plus.htm CLASS=ejsmenu>Les Petits Plus</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#33CC00 NOWRAP><FONT SIZE=3 face="Arial Black">&nbsp;<A HREF=telechargement.htm CLASS=ejsmenu>Téléchargement</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#98FC98 NOWRAP><FONT SIZE=3 face="Arial Black">&nbsp;<A HREF=bons_plans.htm CLASS=ejsmenu>Les Bons Plans</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#33CC00 NOWRAP><FONT SIZE=3 face="Arial Black">&nbsp;<A HREF=concours.htm CLASS=ejsmenu>Jeux Concours</A></FONT>&nbsp;</TD></TR><TR><TD BGCOLOR=#98FC98 NOWRAP><FONT SIZE=3 face="Arial Black">&nbsp;<A HREF=http://www.astwinds.com/Jeux/jeux_en_ligne.html CLASS=ejsmenu>Billard en ligne</A></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(Etvent.MOUSEMOVE);
document.onmousemove = get_mouse;