
//Variables to set
between=30 //The pixel between the menus and the submenus
mainheight=28 //The height of the mainmenus
subheight=32 //The height of the submenus
pxspeed=13 //The pixel speed of the animation
timspeed=15 //The timer speed of the animation
menuy=105 //The top placement of the menu.
menux=0 //The left placement of the menu
//Images - Play with these
level0_regular="IMAGES/IMGMENU/LEVEL0_REGULAR.GIF"
level0_round="IMAGES/IMGMENU/LEVEL0_ROUND.GIF"
level1_regular="IMAGES/IMGMENU/LEVEL1_REGULAR.gif"
level1_round="IMAGES/IMGMENU/LEVEL1_ROUND.GIF"
level1_sub="IMAGES/IMGMENU/LEVEL1_SUB.GIF"
level1_sub_round="IMAGES/IMGMENU/LEVEL1_SUB_ROUND.GIF"
level1_round2="IMAGES/IMGMENU/LEVEL1_ROUND2.GIF"
level2_regular="IMAGES/IMGMENU/LEVEL2_REGULAR.GIF"
level2_round="IMAGES/IMGMENU/LEVEL2_ROUND.GIF"

//Leave this line
preLoadBackgrounds(level0_regular,level0_round,level1_regular,level1_round,level1_sub,level2_regular,level2_round)


//There are 3 different types of menus you can make
//top = Main menus
//sub = Sub menus
//sub2 = SubSub menus

//You control the look of the menus in the stylesheet

//makeMenu('TYPE','TEXT','LINK','TARGET', 'END (THE LAST MENU)')

//Menu accueil 
makeMenu('top','Accueil','accueil.html','principal')


//Menu les sociétés
makeMenu('top','Sociétés du groupe','SOCIETES/CFH/ACCUEILCFH.HTML','principal')
	makeMenu('sub','ABAC','SOCIETES/ABAC/ACCUEILABAC.HTML','principal')
		makeMenu('sub2','procédés','SOCIETES/ABAC/procede.htm','principal')
		makeMenu('sub2','automatisme/informatique','SOCIETES/ABAC/informatique.HTML','principal')
	makeMenu('sub','ABAC environnement','SOCIETES/ABACENV/ACCUEILABACENV.HTML','principal')
	makeMenu('sub','BIP diffusion','SOCIETES/BIP/ACCUEILBIP.HTML','principal')
	makeMenu('sub','BFI','SOCIETES/BFI/ACCUEILBFI.HTML','principal')


//Menu Les Compétences    
makeMenu('top','Compétences','Competences/competences.html','principal')
	

//Menu Les Produits
makeMenu('top','Produits et Procédés','PRODUITS/PRODUITS.HTML','principal')
	makeMenu('sub','Réalisations','PRODUITS/visionneuse.html','principal')	

//Menu Les services
makeMenu('top','Services','SERVICES/SERVICES.HTML','principal')
        
//Menu Les références
makeMenu('top','Références','REFERENCES/REFERENCES.HTML','principal')

	
//Menu Documentations
makeMenu('top','Documentations')
	makeMenu('sub','Liens ::..')
		makeMenu('sub2','ABAC Nord','http://perso.wanadoo.fr/ace-informatique/','_blank')
	makeMenu('sub','Renseignement','DOC/RENSEIGNEMENT.HTML','principal')
	makeMenu('sub','Téléchargement','DOC/TELECHARGEMENT.HTML','principal')
	
makeMenu('top','Nouveautés','nouveautes.htm','principal')

//Menu Plan du site
makeMenu('top','Plan du site','PLAN_DU_SITE2.HTML','principal',1)

//Starting the menu
onload=SlideMenuInit;