// write me if you have questions: web.master@male.net

// constants
var initX       = 0; // x-coordinate of top left corner of dropdown menu
var initY       = 0; // y-coordinate of top left corner of dropdown menu
var backColor   = '#E9E9E9'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = ''; // the color of dropdown menu border
var borderSize  = '0'; // the width of dropdown menu border
var itemHeight  = 20;
var xOverlap    = 0;
var yOverlap    = 0;
//


var menuContent     = new Array ();

// PRESENTATION
menuContent [0] = new Array ( 
-1, // the id of parent menu, -1 if this is a first level menu
-1, // the number of line in parent menu, -1 if this is a first level menu
200, // the width of current menu list 
159, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
167, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (

'&nbsp;Configuration requise',		    	'/sarbacane/configuration.asp',
'&nbsp;Présentation',				'/sarbacane/produit.asp',
'&nbsp;Fonctionnement & écrans',		'/sarbacane/fonctionnement.asp',
'&nbsp;Suivi comportemental',		    	'/sarbacane/tracking.asp',
'&nbsp;GeoTracking',		    		'/sarbacane/geotracking.asp',
'&nbsp;Mises à jour',				'/sarbacane/subscription.asp',
'&nbsp;Modèles pour vos newsletters',		'/sarbacane/modele-newsletter.asp',
'&nbsp;Télé-formation',				'/sarbacane/formation_emailing.asp'
));

// SUPPORT
menuContent [1] = new Array ( 
-1, // the id of parent menu, -1 if this is a first level menu
-1, // the number of line in parent menu, -1 if this is a first level menu
210, // the width of current menu list 
159, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
271, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (

'&nbsp;Manuel du logiciel',		    		'manuel.asp',
'&nbsp;Contacter la hotline',		    		'/hotline.asp',
'&nbsp;Contacter le service commercial',    		'/contact.asp',
'&nbsp;La formation E-mailing Sarbacane',		'/formations/formation_emailing.asp'
));

// AUTRES PRODUITS
menuContent [2] = new Array ( 
-1, // the id of parent menu, -1 if this is a first level menu
-1, // the number of line in parent menu, -1 if this is a first level menu
270, // the width of current menu list 
159, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
297, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (

'&nbsp;Catapulte 2 - Serveur SMTP',		    		'/catapulte/index.asp',
'&nbsp;CheckListe - Gestionnaire de fichiers e-mail',		'/checkliste/index.asp',
'&nbsp;Sarbacane Office - Suite e-mailing complète',		'/sarbacane/sarbacane-office.asp'
));

// INFOS PRATIQUES
menuContent [3] = new Array ( 
-1, // the id of parent menu, -1 if this is a first level menu
-1, // the number of line in parent menu, -1 if this is a first level menu
180, // the width of current menu list 
159, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
323, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'&nbsp;Contrat de licence',		    							'/sarbacane/licence.asp',
'&nbsp;A quoi sert l<img src=/sarbacane/img/apostrophe.gif border=0>e-mailing',		    	'util_email_marketing.asp',
'&nbsp;Avantages de l<img src=/sarbacane/img/apostrophe.gif border=0>e-mailing',		'avantages_emailing.asp'
));















