/* Javascripts do site */

/* abre popup */
function abrePopUp(url)
{  
	window.open(url,'Nosso Retrato','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=400,height=400');  
}  
/* inverte display de div */
function inverte(id)
{
	if (document.getElementById(id).style.display == '')
	{
		document.getElementById(id).style.display = 'none';
	}
	else
	{
		document.getElementById(id).style.display = '';
	}
}

function ativa_box(id_box)
{
	arr_box = new Array("social","pessoal","profissional","experiencia","escolar","associativa");
	
	for (i=0;i<arr_box.length;i++)
	{
		if (arr_box[i] == id_box)
			document.getElementById(arr_box[i]).style.display="";	
		else
			document.getElementById(arr_box[i]).style.display="none";	
	}
}

function mostra_aba(num, num2, num3)
{
	jQuery("#noticia"+num).show("slow");
	jQuery("#noticia"+num2).hide("slow");
	jQuery("#noticia"+num3).hide("slow");
	jQuery("#link_not_"+num).attr("class", "ativo");
	jQuery("#link_not_"+num2).attr("class", "n_ativo");
	jQuery("#link_not_"+num3).attr("class", "n_ativo");
}

/*
jQuery(function()
{
	jQuery("#pesquisa").autocomplete(listagem, {
		matchContains: true,
		minChars: 0
	});
});
*/