document.observe('dom:loaded', function() {

	new Tip($('menuExplorer'), $('menuExplorerData').innerHTML, {
	    stem: 'topLeft',
		  style: 'protoblue',
		  hook: { target:'topLeft', tip: 'topLeft' },
		  hideOn: false,
		  hideAfter: 1,
		  hideOthers:true,
		  offset: { x:0,y:75 }

});
	new Tip($('menuVoyager'), $('menuVoyagerData').innerHTML, {
	    stem: 'topMiddle',
		style: 'protogreen',
		  hook: { target:'topMiddle', tip: 'topMiddle' },
		  hideOn: false,
		  hideAfter: 1,
		  hideOthers:true,
		  offset: { x:0,y:75 }

});
	new Tip($('menuPartager'), $('menuPartagerData').innerHTML, {
		stem: 'topRight',
		  style: 'protored', 
		  hook: { target:'topRight', tip: 'topRight' },
		  hideOn: false,
		  hideAfter: 1,
		  hideOthers:true,
		  offset: { x:0,y:75 }
});

	
	
});