$(document).ready(function() {

	var lang = $("body").attr("class");
	var img_menu = $('#img_menu').attr('src'); //imagem do menu atual
	
	$('#busca').hint();
	
	$('#logo, #img_menu, #borda_inferior, #alupar, #tit_interna > img, .png').ifixpng();
	$('#main').pngfix();

	// mouseover no menu
//	$('#btn_empresa, #btn_caracteristicas, #btn_meioambiente, #btn_faleconosco').hover(
//		function () {
//			imagemStr = $(this).attr('id');
//			imagemStr = imagemStr.split("_");
//			$('#img_menu').attr('src','images/btn_menu_'+imagemStr[1]+'_'+lang+'.png').ifixpng();
//		}, 
//		function () { $('#img_menu').attr('src',img_menu).ifixpng(); }
//	);

//fecha o document ready


  // trigger the function when clicking on an assigned element
    $(".toggle").click(function () {
        // check the visibility of the next element in the DOM
        if ($(this).next().is(":hidden")) {
            $(this).next().slideDown(); // slide it down
        } else {
            $(this).next().hide('slow'); // hide it
        }
    });

});
