function removeAcentos(text){
	text = text.replace(/[ÁÀÂÃÄ]/, 'A');
	text = text.replace(/[áàâãäª]/, 'a');
	text = text.replace(/[ÉÈÊË]/, 'E');
	text = text.replace(/[éèêë]/, 'e');
	text = text.replace(/[ÓÒÔÕÖ]/, 'O');
	text = text.replace(/[óòôõöº]/, 'o');
	text = text.replace(/[ÚÙÛÜ]/, 'U');
	text = text.replace(/[úùûü]/, 'u');
	text = text.replace(/Ç/, 'C');
	text = text.replace(/ç/, 'c');
	return text;
}
function sluggify(text){
	text = text.replace(/[^-a-zA-Z0-9\s+]+/ig, '');
    text = text.replace(/\s+/gi, "-");
    return text;
}
