var menuData={
			items:[
				{ text:"MENU MOUVANT", href:"#", id:"jsMenu_ddItem", className:"dragDropMenuItem"},
				{ text:"Biographie", href:"#" , submenu:{
					items: [
						{ text:"Afficher ma biographie", href:"../fr/bio_fr.html" },
						{ text:"Télécharger .doc", href:"../fichiers/bio_site.doc" },
						{ text:"Biographie sur mon Blog", href:"http://davince.canalblog.com/profile/60262/index.html",target:"_blank" }
						]
					}
				},
				{ text:"Roger Roger", href:"#", submenu:{
					items: [
							{ text:"Croquis", href:"../fr/galerie_rr.html" },
							{ text:"1. La fissure de la fusion", href:"#",submenu:{
								items: [
										{ text:"Pages encrées", href:"../fr/galerie_rr_fp_encre.html" }
									]
								}
							}
						]
					}
				},
				{ text:"Les Voyages d'Alix", href:"#",submenu:{
					items: [
						{ text:"Carthage", href:"../fr/galerie_carthage.html" },
						{ text:"Jérusalem", href:"../fr/galerie_jerusalem.html" },
						{ text:"Pétra", href:"../fr/galerie_petra.html" },
						{ text:"Lutèce", href:"../fr/galerie_lutece.html" }
						]
					}
				},
				{ text:"Storyboards", href:"#" ,submenu:{
					items: [
						{ text:"Bonnie & Clyde (clip en dessin)", href:"../fr/galerie_bonnie_clyde.html" },
						{ text:"La Genèse de l'Histoire", href:"../fr/galerie_ppg.html" },
						{ text:"La fin des 3 détectives", href:"../fr/galerie_3dec_fr.html" },
						{ text:"La mort tragique de l'acteur Blondel", href:"../fr/galerie_VG_fr.html" }
						]
					}
				},
				{ text:"Niouz", href:"#" ,submenu:{
					items: [
						{ text:"Newsletter-Inscription", href:"contacts.html" },
						{ text:"Niouz (dédicaces, nouveaux dessins)", href:"../fr/niouz.php" }
					]
					}
				},
				{ text:"Liens", href:"#",submenu:{
					items: [
						{ text:"Mon blog", href:"http://davince.canalblog.com/",target:"_blank" },
						{ text:"Casterman", href:"http://bd.casterman.com/",target:"_blank" },
						{ text:"Cédric Luypaerts", href:"http://www.cedzone.net/",target:"_blank" },
						{ text:"Eric Migom", href:"http://www.ericmigom.be/",target:"_blank" },
						{ text:"Valentine Safatly", href:"http://www.valentinesafatly.com/",target:"_blank" },
						{ text:"Vincent Massin", href:"http://www.cinergie.be/prof.php?action:display&id=738",target:"_blank" },
						{ text:"Milonic", href:"http://www.milonic.com/",target:"_blank" },
						{ text:"Pragmacom", href:"http://www.pragmacom.eu/blog/",target:"_blank" }
					]
					}
				}
			]
		}
		wp("wp_vhenin_Menu").menuable({
			//theme:"Office2003",
			data:menuData,
			separators:2,
			type:"vertical",
			shadow:{style:"Test",mainMenu:true},
			oncomplete:function(e){
				// Get a reference to the dragable object from this oncomplete event
				var E=wp.getE(e); 
				
				// Set the top position of the object - we set this to -999px to ensure the menu is not visible whilst we adjust it
				E.style.top="100px"
				E.style.left="100px"
				
				// Set the objects CSS parameters based on any cookie values we find.
				wp(E).strCSS(wp.cookie.get("jsMenu_ddItemTL"));
				
				// Tell the menu item that it is to be a dragdrop anchor for the menu (menu is the E reference we obtained earlier)
				wp("jsMenu_ddItem").dragable({container:E,ondrop:function(e){
					wp.cookie.set("jsMenu_ddItemTL","top:"+wp.css.get(E,"top")+";left:"+wp.css.get(E,"left")+";",99999);
				}})
			}
		});

