/*******************************************************************************
Copyright (c) 2000 Claudiney Calixto da Silva (www.interweb.com.br)

eXperience DHTML coolMenus
Version 1.0
This script can be used freely as long as all copyright messages are
intact.

These are the varibles you have to set to customize the menu.
*******************************************************************************/


/********************************************************************************
Variables to set.

Remember that to set fontsize and fonttype you set that in the stylesheet
above!
********************************************************************************/

//Background bar properties
backgroundbar=1 //Set to 0 if no backgroundbar
backgroundbarfromleft=100 //The left placement of the backgroundbar in pixel or %
backgroundbarfromtop=87 //The top placement of the backgroundbar  in pixel or %
backgroundbarsize="50%" //The size of the bar in pixel or %
backgroundbarcolor="" //The backgroundcolor of the bar

mainheight=15 //The height of the main menuitems in pixel or %
mainwidth=140 //The width of the main menuitems  in pixel or %

subheight=20 //The height if the subitems in pixel or % (the width will be the same as the main)

mainbgcoloroff='' //The backgroundcolor of the main menuitems
mainbgcoloron='' //The backgroundcolor on mouseover of the main menuitems
subbgcoloroff='#000080' //The backgroundcolor of the sub menuitems
subbgcoloron='#000080' //The backgroundcolor on mouseover of the sub menuitems
subsubbgcoloroff='#000080' //The backgroundcolor of the subsub menuitems
subsubbgcoloron='#000080' //The backgroundcolor on mouseover of the subsub menuitems
stayoncolor=0 //Do you want the menus to stay on the mouseovered color when clicked?

menuspeed=50 //The speed of the clipping in px
menusubspeed=15 //The speed of the submenus clipping in px

menurows=1 //Set to 0 if you want rows and to 1 if you want columns

menueventon="mouse" //Set this to "mouse" if you want the menus to appear onmouseover, set it to "click" if you want it to appear onclick
menueventoff="mouse" //Set this to "mouse" if you them to disappear onmouseout, if not set it to "click"

//Placement of the menuitems

//Example in %:
//menuplacement=new Array("4%","19%","34%","49%","64%","79%") //Remember to make the arrays contain as many values as you have main menuitems
menuplacement=new Array("25%","32%","41%","50%","58%","74%", "82%") //Remember to make the arrays contain as many values as you have main menuitems

//Example in px: (remember to use the ' ' around the numbers)
//menuplacement=new Array(5,125,245,365,485,624)

//Example right beside eachother (only adding the pxbetween variable)
//menuplacement=0

//If you use the "right beside eachother" you cant how many pixel there should be between each here
pxbetween=0 //in pixel or %

//And you can set where it should start from the left here
fromleft=10 //in pixel or %

//This is how much from the top the menu should be.
fromtop=87 //in pixel or %

/********************************************************************************
Construct your menus below
********************************************************************************/

//Home
	makeMain(0, 'Home', 'index.asp', 0)
		
//Empresa
	makeMain(1, 'Empresa', 'empresa.asp', 0)
		makeSub(1,0, ' - Missão', 'missao.asp', 2)
		makeSub(1,1, ' - Visão', 'sistema.asp', 2)

//Produtos
	makeMain(2, 'Produtos', 'produto.asp', 0)
		makeSub(2,0, ' - QualiView Standard', 'standard.asp', 2)
		makeSub(2,1, ' - QualiView Evolution', 'evolution.asp', 2)	
		//makeSub(2,2, ' - Clientes e Componentes', 'clientes.asp', 3)	

//Projetos
	makeMain(3, 'Projetos')
		makeSub(3,0, ' - Aplicações Especiais', 'aplicacoes.asp', 2)
		makeSub(3,1, ' - Sistema de Visão', 'sistema.asp', 2)	
		
//Visao
	makeMain(4, 'Visão Computacional', 'viscomp.asp', 0)
		
//Visao
	makeMain(5, 'Contato', 'contato.asp', 0)
	
//representantes
	makeMain(6, 'Representantes', 'cad_repre.asp', 0)


/********************************************************************************
End menu construction
********************************************************************************/
      
      
//When all the menus are written out we initiates the menu
menuInit()  