var menuData={
			items:[
				{ text:"BEWEGEND MENU", href:"#", id:"jsMenu_ddItem", className:"dragDropMenuItem"},
				{ text:"Biografie", href:"#" , submenu:{
					items: [
						{ text:"Mijn biografie tonen", href:"../nl/bio_nl.html" },
						{ text:".doc Downloaden", href:"../fichiers/bio_site_nl.doc" },
						{ text:"De biografie op mijn blog", href:"http://davince.canalblog.com/profile/60262/index.html",target:"_blank" }
						]
					}
				},
				{ text:"Roger Roger", href:"#", submenu:{
					items: [
							{ text:"Schetsen", href:"../nl/galerie_rr_nl.html" },
							{ text:"1. 'La fissure de la fusion'", href:"#",submenu:{
								items: [
										{ text:"Geïnkte stripplaten", href:"../nl/galerie_rr_fp_encre_nl.html" }
									]
								}
							}
						]
					}
				},
				{ text:"De Reizen van Alex", href:"#",submenu:{
					items: [
						{ text:"Carthago", href:"../nl/galerie_carthage_nl.html" },
						{ text:"Jeruzalem", href:"../nl/galerie_jeruzalem_nl.html" },
						{ text:"Petra", href:"../nl/galerie_petra_nl.html" },
						{ text:"Lutetia", href:"../nl/galerie_lutece_nl.html" }
						]
					}
				},
				{ text:"Storyboards", href:"#" ,submenu:{
					items: [
						{ text:"Bonnie & Clyde (clip in tekeningen)", href:"../nl/galerie_bonnie_clyde_nl.html" },
						{ text:"Het ontstaan van de geschiedenis", href:"../nl/galerie_ppg_nl.html" },
						{ text:"Het einde van de 3 detectives", href:"../nl/galerie_3dec_nl.html" },
						{ text:"De tragische dood van de acteur Blondel", href:"../nl/galerie_VG_nl.html" }
						]
					}
				},
				{ text:"Nieuws", href:"#" ,submenu:{
					items: [
						{ text:"Nieuwsbrief-Inschrijving", href:"contacts.html" },
						{ text:"Nieuws (signeeracties, recente tekeningen)", href:"../nl/nieuws.php" }
					]
					}
				},
				{ text:"Links", href:"#",submenu:{
					items: [
						{ text:"Mijn 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);
				}})
			}
		});

