var menuData={
			items:[
				{ text:"DRAGGABLE MENU", href:"#", id:"jsMenu_ddItem", className:"dragDropMenuItem"},
				{ text:"Biography", href:"#" , submenu:{
					items: [
						{ text:"See my Biography", href:"../en/bio_en.html" },
						{ text:"Download .doc", href:"../fichiers/bio_site_en.doc" },
						{ text:"The biography on my blog", href:"http://davince.canalblog.com/profile/60262/index.html" }
						]
					}
				},
				{ text:"Roger Roger", href:"#", submenu:{
					items: [
							{ text:"Sketches", href:"../en/galerie_rr_en.html" },
							{ text:"1. 'La fissure de la fusion'", href:"#",submenu:{
								items: [
										{ text:"Inked strips", href:"../en/galerie_rr_fp_encre_en.html" }
									]
								}
							}
						]
					}
				},
				{ text:"'Les Voyages d'Alix'", href:"#",submenu:{
					items: [
						{ text:"Carthage", href:"../en/galerie_carthage_en.html" },
						{ text:"Jerusalem", href:"../en/galerie_jeruzalem_en.html" },
						{ text:"Petra", href:"../en/galerie_petra_en.html" },
						{ text:"Lutetia", href:"../en/galerie_lutece_en.html" }
						]
					}
				},
				{ text:"Storyboards", href:"#" ,submenu:{
					items: [
						{ text:"Bonnie & Clyde (illustrated videoclip)", href:"../en/galerie_bonnie_clyde_en.html" },
						{ text:"The genesis of History", href:"../en/galerie_ppg_en.html" },
						{ text:"The end of the 3 detectives", href:"../en/galerie_3dec_en.html" },
						{ text:"The tragical death of the actor Blondel", href:"../en/galerie_VG_en.html" }
						]
					}
				},
				{ text:"News", href:"#" ,submenu:{
					items: [
						{ text:"Register for Newsletter", href:"contacts.html" },
						{ text:"News (signing actions, new drawings)", href:"news.php" }
					]
					}
				},
				{ text:"Links", href:"#",submenu:{
					items: [
						{ text:"My 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);
				}})
			}
		});

