/* INICIO JS HIGHSLIDE */
	hs.graphicsDir = 'highslide/graphics/';
	hs.align = 'center';
	hs.transitions = ['expand', 'crossfade'];
	hs.outlineType = 'rounded-white';
	hs.fadeInOut = true;
	//hs.dimmingOpacity = 0.75;
	
	// Add the controlbar
	hs.addSlideshow({
		//slideshowGroup: 'group1',
		interval: 5000,
		repeat: false,
		useControls: true,
		fixedControls: 'fit',
		overlayOptions: {
			opacity: .75,
			position: 'bottom center',
			hideOnMouseOut: true
		}
	});
/* FIM JS HIGHSLIDE */

/* INICIO JS FAQ */
	function EscondeMenu(campo,imagem){
		var div;
		div = document.getElementById(campo);
	
		if (div.style.display == "none") {
			document.getElementById(campo).style.display = "block";
			document.getElementById(imagem).src = "imagens/menos.png";
		}
		else {
			document.getElementById(campo).style.display = "none";
			
			if ( imagem.indexOf("duv") == "3" ) {
				document.getElementById(imagem).src = "imagens/mais.png";
			} else {
				document.getElementById(imagem).src = "imagens/mais.png";
			}
		}
	}
/* FIM JS FAQ */