oCMenu=new makeCoolMenu("oCMenu")	// Cria objeto Menu. - Value: nomemenu
oCMenu.useframes=0					// Se usa frames ou nao - Value: 0 || 1
oCMenu.frame="frmMain"				// The name of your main frame (where the menus should appear). Leave empty if you're not using frames - Value: "main_frame_name"

oCMenu.useclick=0					// Se 1, eh necessario dar um clique no menu para abrir - Value: 0 || 1
oCMenu.useNS4links=1				// Se 1, cursor: hand  - Value: 0 || 1 soh para NS4;
oCMenu.NS4padding=2					// Espacamento para NS4

//Checa se tem select boxes na pagina e esconde-os.
//Não funciona no NS4! para NS4 eh utilizado o metodo hideform
oCMenu.checkselect=1

/*Para fazer o formulario desaparecer no NS4
  eh necessario criar um layer para o formulario
  ex: <ILAYER id=formLayer>.*/
oCMenu.hideForm="document.formLayer" //Value: "" || "document.NOME_LAYER"

oCMenu.offlineUrl=""		//Value: "path do endereco local/"
oCMenu.onlineUrl=""			//Value: "path endereco servidor/"

oCMenu.pagecheck=1			// Se 1, verifica se algum subitem do menu vai sair da pagina. - Value: 0 || 1
oCMenu.checkscroll=0		// Se 1, deixa o menu sempre visivel.
oCMenu.resizecheck=1		// Se 1, ajusta o menu toda vez que o tamanho da janela for alterado - Value: 0 || 1
oCMenu.wait=300			// Tempo que permanecera visivel depois do mouseout - Value: milliseconds

//Se Value="menu", fica com a configuracao do menu  
//Background bar properties
oCMenu.usebar=0				// Se 1, mostra uma barra no fundo - Value: 1 || 0
oCMenu.barcolor=""			// Cor da barra - Value: "color"
oCMenu.barwidth=""			// Largura da barra - Value: px || "%" || "menu"
oCMenu.barheight=""			// Altura da barra - Value: px || "%" || "menu"
oCMenu.barx=""				// Posicao da esquerda - Value: px || "%" || "menu"
oCMenu.bary=""				// Posicao do topo - Value: px || "%" || "menu"
oCMenu.barinheritborder=0		// Se 1, a borda vai ter o mesmo tamanho que a do menu - Value: 0 || 1

//Placement properties
oCMenu.rows=1				// Se 1, menu em linha - Value 0 || 1
oCMenu.fromleft=3			// Posicao horizontal. (Somente se menuplacement = 0) - Value: px || "%"
oCMenu.fromtop=97			// Posicao vertical. (Somente se menuplacement = 0) - Value: px || "%"
oCMenu.pxbetween=3			// Espacamento entre os top items. (Somente se menuplacement = 0) - Value: px || "%"

/*Existem varias maneiras de arrumar a posicao do menu. 
Se menuplacement = 0, arrumar fromleft, fromtop e pxbetween (logo acima)
oCMenu.menuplacement=0

Se menu for em linha. values "left", "right", "center"
Se menu for em coluna. values "top", "bottom", "center", "bottomcenter"
oCMenu.menuplacement="center"

Direto em Pixel
oCMenu.menuplacement=new Array(10,200,400,600)
Direto em Porcentagem 
oCMenu.menuplacement=new Array('2%','20%','36%','57%','70%','80%')
*/
oCMenu.menuplacement="center"

/*
level[0] = top items
level[1] = sub items
level[2] = sub2 items
level[3] = sub3 items and so on....
*/

//TOP LEVEL PROPERTIES - ALL OF THESE MUST BE SPESIFIED FOR LEVEL[0]
oCMenu.level[0]=new Array()							//Cria novo item
oCMenu.level[0].width="120"							//Largura do item. - Value: px || "%"
oCMenu.level[0].height="15"							//Altura do item. - Value: px || "%"
oCMenu.level[0].bgcoloroff="green"		//Cor do fundo quando estiver inativo. - Value: "color"
oCMenu.level[0].bgcoloron="blue"			//Cor do fundo quando estiver ativo. - Value: "color"
oCMenu.level[0].textcolor="white"				//Cor do texto. - Value: "color"
oCMenu.level[0].hovercolor="white"			//Cor do texto quando estiver hover. - Value: "color"
oCMenu.level[0].style="padding:2px; font-weight:bold; font-family:verdana,arial; font-size:10; text-align: center" //The style for all level[0] (top) items. - Value: "style_settings"
oCMenu.level[0].border=0								//Tamanho da borda. - Value: px
oCMenu.level[0].bordercolor="999999"			//Cor da borda. - Value: "color"
oCMenu.level[0].offsetX = -120				//Posicao horizontal dos submenus deste item. - Value: px
oCMenu.level[0].offsetY = 18				//Posicao vertical dos submenus deste item. - Value: px
oCMenu.level[0].NS4font="verdana,arial,helvetica"	//Fonte para NS4.
oCMenu.level[0].NS4fontSize="1.8"				//Tamanho da Fonte para NS4.

oCMenu.level[0].clip=0		//1						//Se 1, rolagem do menu. - Value: 0 || 1
oCMenu.level[0].clippx=0	//15					//Tamanho em pixel que sera visualizado pelo tempo especificado abaixo. - Value: px 
oCMenu.level[0].cliptim=0	//50					//Tempo. - Value: milliseconds

oCMenu.level[0].NS4padding=0
oCMenu.level[0].align="right" //Value: "top" || "bottom" || "left" || "right" 
oCMenu.level[0].filter=0 //VALUE: 0 || "filter specs"

//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to spesify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[1]=new Array() //Add this for each new level (adding one to the number)
oCMenu.level[1].width=120
oCMenu.level[1].height=15
oCMenu.level[1].align="top"
oCMenu.level[1].style="padding:2px; font-family:verdana,arial; font-size:10; text-align: left" //The style for all level[0] (top) items. - Value: "style_settings"
oCMenu.level[1].offsetX=05
oCMenu.level[1].offsetY=18
oCMenu.level[1].border=1
oCMenu.level[1].bordercolor="999999"

//EXAMPLE SUB LEVEL[2] PROPERTIES - You have to spesify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[2]=new Array() //Add this for each new level (adding one to the number)
oCMenu.level[2].width=120
oCMenu.level[2].height=15
oCMenu.level[2].align="top"
oCMenu.level[2].style="padding:2px; font-family:verdana,arial; font-size:10; text-align: left" //The style for all level[0] (top) items. - Value: "style_settings"
oCMenu.level[2].offsetX=0
oCMenu.level[2].offsetY=7.5
oCMenu.level[2].border=1
oCMenu.level[2].bordercolor="999999"

/*Variaveis do Menu
name: The name of the item. This must be unique for each item. Do not use spaces or strange charachters in this one! **
parent: The name of the menuitem you want this to "connect" to. This will be a submenu of the item that have the name you place in here. ** for all other then the topitems
text: The text you want in the item. ** (except if you use images) 
link: The page you want this item to link to.
target: The target window or frame you want the link to go to (Default is same window if you're not using frames, and the mainframe if you're using frames)
width: The width of the element. If not spesified it will get the default width spesified above.
height: The height of the element. If not spesified it will get the default height spesified above.
img1: The "off" image for element if you want to use images.
img2: The image that appears onmouseover if using images.
bgcoloroff: The background color for this item. If not spesified it will get the default background color spesified above.
bgcoloron: The "on" background color for this item. If not spesified it will get the default "on" background color spesified above.
textcolor: The text color for this item. If not spesified it will get the default text color spesified above.
hovercolor: The "on" text color for this item. If not spesified it will get the default "on" text color spesified above. Netscape4 ignores this
onclick: If you want something to happen when the element is clicked (different from going to a link) spesifiy it here.
onmouseover: This will happen when you mouseover the element. Could be status text, another imageswap or whatever.
onmouseout: This will happen when you mouseout the element.

*/