	// set up drop downs anywhere in the body of the page. I think the bottom of the page is better.. 
	// but you can experiment with effect on loadtime.
	if (mtDropDown.isSupported()) {

		//==================================================================================================
		// create a set of dropdowns
		//==================================================================================================
		// the first param should always be down, as it is here
		//
		// The second and third param are the top and left offset positions of the menus from their actuators
		// respectively. To make a menu appear a little to the left and bottom of an actuator, you could use
		// something like -5, 5
		//
		// The last parameter can be .topLeft, .bottomLeft, .topRight, or .bottomRight to inidicate the corner
		// of the actuator from which to measure the offset positions above. Here we are saying we want the 
		// menu to appear directly below the bottom left corner of the actuator
		//==================================================================================================
		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		//menu1.addItem("&nbsp;&#8226;  Conversão de moedas", "http://www.fiskiguassu.com/ucc.php");
		menu1.addItem("&nbsp;&#8226;  Curiosidades", "http://www.fiskiguassu.com/curiosidades.php");
		//menu1.addItem("&nbsp;&#8226;  Fisk Exterior", "http://www.fiskiguassu.com/fiskusa.php");
		menu1.addItem("&nbsp;&#8226;  Fisk Kids", "http://www.fiskiguassu.com/diversao.php");
		menu1.addItem("&nbsp;&#8226;  Cotação do Dólar", "http://economia.terra.com.br/mercados/divisas");
		//menu1.addItem("&nbsp;&#8226;  Intercâmbio", "http://www.fiskiguassu.com/interca.php");
		//menu1.addItem("&nbsp;&#8226;  Links Úteis", "http://www.fiskiguassu.com/linksut.php");
		//menu1.addItem("&nbsp;&#8226;  Mapas On-line", "http://mapas.guiamais.com.br");
		//menu1.addItem("&nbsp;&#8226;  Procura de CEP", "http://www.buscacep.correios.com.br/servicos/dnec/index.do");
		menu1.addItem("&nbsp;&#8226;  Telefones On-line", "http://www.guiamais.com.br/guia/foz+do+iguacu-pr");
		menu1.addItem("&nbsp;&#8226;  Prefeitura Municipal de Foz do Iguaçu", "http://www.fozdoiguacu.pr.gov.br/" );
				
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("&nbsp;&#8226;  Alunos Destaque", "http://www.fiskiguassu.com/aldes.php");
   		menu2.addItem("&nbsp;&#8226;  Alunos Graduados e Pós","http://www.fiskiguassu.com/alunos.php");
		menu2.addItem("&nbsp;&#8226;  Conversação", "http://www.fiskiguassu.com/iconv.php");
		//menu2.addItem("&nbsp;&#8226;  Cursos","http://www.fiskiguassu.com/cursos.php");
		menu2.addItem("&nbsp;&#8226;  Galeria de Fotos","http://www.fiskiguassu.com/galeria.php");
		menu2.addItem("&nbsp;&#8226;  Multimídia e Biblioteca", "http://www.fiskiguassu.com/mbiblio.php");
		menu2.addItem("&nbsp;&#8226;  Organização", "http://www.fiskiguassu.com/organiz.php");
		menu2.addItem("&nbsp;&#8226;  Professores", "http://www.fiskiguassu.com/profenew.php");
		menu2.addItem("&nbsp;&#8226;  Testes On-line", "http://www.fiskiguassu.com/testes.php");
        

		mtDropDown.renderAll();
	}

